次のルーター設定を前提とします。
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"