我正在使用ExtJS 4.0.7和ExtJS MVC功能。我有一个父模型hasMany
个孩子,belongsTo
是父母。
访问孩子的正确方法是什么?如果我浏览parent.children().data.items[0].data
(而不是parent.data.children[0]
),则会有不需要的属性MyApp.model.parent_id
。我也注意到了日期存储方式之间的差异。
首先,这是父母的定义。所以父母会有很多孩子。
Ext.define('MyApp.model.Parent', {
extend : 'Ext.data.Model',
fields : [ 'id' ],
hasMany : [ {
model : 'MyApp.model.Child',
name : 'children'
}],
proxy : {
type : 'direct',
api : {
create : Parents.create,
read : Parents.read,
update : Parents.update,
destroy : Parents.destroy
}
}
});
每个孩子都属于父母。
Ext.define('MyApp.model.Child', {
extend : 'Ext.data.Model',
fields : [ 'id', {
name : 'validFrom',
type : 'date',
dateFormat : 'time'
} ],
belongsTo : 'Parent'
});
我在控制器中加载父级:
this.getParentModel().load(id, {
scope : this,
success : function(parent) {
// the party looks good here when logged to console
console.log(parent);
this.updateStore(parent);
}
});
在控制台中检查父级时,我发现了这一点:
console.log(parent.data.children[0])
:控制台输出:
Object
id: 3
validFrom: -1767225600000
__proto__: Object
console.log(parent.children().data.items[0].data)
:控制台输出:
Object
id: 3
MyApp.model.parent_id: 209 // why is that here?
validFrom: Thu Jan 01 1914 01:00:00 GMT+0100 (Central European Standard Time)
__proto__: Object
答案 0 :(得分:0)
如果我理解正确,我想你想要:
var someRecordId = 'idProperty';
var record = Ext.getStore('Parent').getById(someRecordId);
// this returns all hasMany for the name of of the property i.e. name: 'child'
record.child();
这将返回Child记录中Child的所有项目数据(基于模型定义)。它应该只包括子模型定义中的那些字段。所以不包括parent_id。如果您正在尝试检索Child的所有记录,那么您只需获得与其他商店相同的记录。