我希望能够将Session
单身注入我的Ember模型中。我试图支持的用例是在模型上计算了对用户配置文件作出反应的属性(Session对象上的属性)。
App = window.App = Ember.Application.create({
ready: function() {
console.log('App ready');
this.register('session:current', App.Session, {singleton: true});
this.inject('session:current','store','store:main');
this.inject('controller','session','session:current');
this.inject('model','session','session:current');
}
});
注射可以很好地控制到控制器,但是我无法将其送到model
。这里有限制吗?任何特殊技术?
--------附加上下文---------
以下是我希望能够在model
定义中执行的操作示例:
App.Product = DS.Model.extend({
name: DS.attr("string"),
company: DS.attr("string"),
categories: DS.attr("raw"),
description: DS.attr("string"),
isConfigured: function() {
return this.session.currentUser.configuredProducts.contains(this.get('id'));
}.property('id')
});
答案 0 :(得分:11)
默认情况下,模型中的注入不起作用。为此,您需要设置标记Ember.MODEL_FACTORY_INJECTIONS = true
:
Ember.MODEL_FACTORY_INJECTIONS = true;
App = window.App = Ember.Application.create({
ready: function() {
console.log('App ready');
this.register('session:current', App.Session, {singleton: true});
this.inject('session:current','store','store:main');
this.inject('controller','session','session:current');
this.inject('model','session','session:current');
}
});
这样做的缺点是它会产生一些中断变化:
如果您App.Product.FIXTURES = [...]
需要使用App.Product.reopenClass({ FIXTURES: [...] });
productRecord.constructor === App.Product
将评估为false
。要解决此问题,您可以使用App.Product.detect(productRecord.constructor)
。