0
我有嵌套的路線是這樣的:Emberjs:訪問動態段嵌套路由/控制器
this.resource('profile', { path: '/:user' }, function(){
this.route('followers');
this.route('following');
});
我需要的「用戶」動態段在我的追隨者/以下路線/控制器的值的訪問。我想到的一種方法是使用
this.controllerFor('profile').get('user')
在我的追隨者/追蹤路線中。
這樣做的正確方法是什麼?
感謝,