我有一个覆盖该方法的 ember.js 对象,create
因此我可以将一些未知结构的 json 传递给对象内容变量。
//model
App.Order = Ember.Object.extend({
content: null,
create: function(data) {
this.set('content', data);
return this._super();
},
getView: function() {
var self = this;
return Ember.View.create({
templateName: 'order-dialogue',
classNames: ['card'],
content: self.get('content'),
name: 'house'
});
}
});
我有一个为对象生成视图的函数,但是我无法访问父对象的内容。每次我尝试,self.get('content')
返回null
。
问题:
函数中生成的视图如何getView
访问父对象的内容?