可能是我最近问过的最直接的问题。
给定这样设置的路线:
Social.Router.map(function() {
this.resource('accounts', function(){
this.resource('account', { path: ':account_id'});
});
});
和这样的网址:
/accounts/12
如果我想获取当前活动的帐户记录,我将如何获取 account_id?最终目标是我正在这样做:
acct = App.Account.find(12)
当我更愿意这样做时
acct = App.Account.find(account_id)
更新 1
这是 AccountsRoute:
Social.AccountsRoute = Ember.Route.extend({
model: function() {
return Social.Account.find();
}
});