我已经根据这篇文章实现了身份验证
App.Session
因此,我在应用程序初始化时创建了一个对象:
Ember.Application.initializer({
name: 'session',
initialize: function (container, application) {
App.Session = Ember.Object.extend({
init: function () {
this._super();
this.set('authToken', $.cookie('auth_token'));
this.set('authAccountId', $.cookie('auth_accountId'));
this.set('authAccountLanguage', $.cookie('auth_accountLanguage'));
},
authAccountIdChanged: function () {
var authAccountId = this.get('authAccountId');
$.cookie('auth_accountId', authAccountId);
//Load the actual account record from the server if the authAccountId is set
//Used to have for example the full name or other properties of the account
if (!Ember.isEmpty(authAccountId)) {
this.set('authAccount', this.store.find('account', authAccountId));
}
}.observes('authAccountId'),
...
我有一个观察员authAccountId
;因此,每次更改accountId
(id
登录用户的)时,我都想检索该用户的所有详细信息(全名、首选项等)。
在 Ember 数据版本 1.0.0 之前,我使用的是:
this.set('authAccount', App.Account.find(authAccountId));
这奏效了。现在我使用:this.set('authAccount', this.store.find('account', authAccountId));
我收到错误:Uncaught TypeError: Cannot call method 'find' of undefined
。同样在调试器中,this.get('store')
结果未定义。我的印象是该商店在 中不可用Application.initializer
。有人可以帮助解决这个问题吗?