给定以下路由器设置:
App.Router.map(function() {
this.resource('posts', function() {
this.route('new');
this.resource('post', { path: ':post_id' }, function() {
this.route('edit');
});
});
});
是否可以获得路线的路径?
虚构示例:
App.Router.get('path', 'posts.new'); //=> "/posts/new"
或使用以下模型:
App.Router.get('path', 'post.edit', model); //=> "/posts/1/edit"