我有一個嵌套的航線結構是這樣的:嵌套路線加載父模型
App.Router.map(function() {
this.resource('user', {path: '/user/:user_id'}, function() {
this.route('followers', {path: '/followers'});
});
});
當我打的user/123/followers
路線我希望它會自動從user/123/followers
取模型,但它只是獲取用戶模型再從user/123
。我需要添加什麼,以便爲路線提取正確的數據?