我想根据字段的值在模型上添加关联。例如:
我想添加像这样的关联
父模型:
Ext.define('App.model.parentModel', {
extend: 'Ext.data.Model',
requires: [
'App.model.ChildModel1',
'App.model.ChildModel2',
],
idProperty: 'type',
fields: [
'name',
'type'
],
proxy:[//proxy]
});
我想添加像这样的关联
hasMany:{
model:'App.model.ChildModel1'
}
如果我对“类型”字段的值是汽车。
否则我想添加关联,例如
hasMany:{
model:'App.model.ChildModel2'
}
如何即时检查并添加关联?