Slide 10
Slide 10 text
ROUTER
/post/123 → PostRoute
/post/123/edit → PostEditRoute
/post/123comments → CommentsRoute
/post/123/comments/new → CommentsNewRoute
App.Router.map(function() {!
this.resource('post', { path: '/post/:post_id' }, function() {!
this.route('edit');!
this.resource('comments', function() {!
this.route('new');!
});!
});!
});!