2
我已經在我的餘燼路線中嵌套資源。讓我們假設根據this example,我router.js
樣子:如何在Ember.js中定義嵌套資源的路由名稱?
App.Router.map(function() {
this.resource('post', { path: '/post/:post_id' }, function() {
this.resource('comment', { path ':comment_id' });
});
});
的文件說,這應該產生這樣的路線:
/post/:post_id post.index
/post/:post_id/:comment_id comment.index
不過,我想這是post.show
和comment.show
,我該如何重新命名這些路線?
我已經回答了您的問題。我的例子適合你? –
@MárcioRodriguesCorreaJúnior對於我來說,這不是一個解決方法。然而在你的JSbin例子中,評論沒有列出,我不能確認它的工作。 – p1100i
是的,它就像一個解決方法,但我沒有找到其他方法。你可以通過http://jsbin.com/ucanam/647#/post/1/1訪問評論。或者點擊Marcio鏈接http://jsbin.com/ucanam/647#/post/1 –