我已经开始创建一个 Sencha Touch 2 应用程序,它定义了两个模型,更改和配置。更改属于配置。这两种型号也都有商店设置。在更改存储中,我有一个代理设置来请求以 JSON 格式返回的数据。JSON 数据有一个带有嵌套配置的更改。Change 加载得很好,但是当我尝试从 Change 实例中获取关联的 Configuration 时,它不起作用。
我已经定义了这样的模型:
更改型号:
Ext.define('Changes.model.Change', {
extend: 'Ext.data.Model',
xtype: 'changemodel',
config: {
fields: [
{name:'id', type:'int'},
{name:'changeId', type:'string'},
{name:'briefDescription', type:'string'},
{name:'configuration_id', type:'int'}
],
associations: [{
type:'belongsTo',
model:'Changes.model.Configuration',
primaryKey: 'id',
foreignKey: 'configuration_id',
associationKey: 'configurations'
}],
},
});
配置型号:
Ext.define('Changes.model.Configuration', {
extend: 'Ext.data.Model',
xtype: 'configurationmodel',
config: {
fields: [
{ name: 'id', type: 'int'},
{ name: 'longName', type: 'string' },
{ name: 'ciName', type: 'string' },
],
hasMany: {model: 'Change', name: 'changes'}
}
});
每个模型都有一个商店。
更改存储:
Ext.define('Changes.store.Changes', {
extend: 'Ext.data.Store',
requires: 'Changes.model.Change',
config: {
model: 'Changes.model.Change',
proxy: {
type: 'ajax',
url: 'services/changes.php',
reader: {
type: 'json',
rootProperty: 'changes'
}
},
sorters: [{ property: 'briefDescription', direction: 'ASC'}],
}
});
配置存储:
Ext.define('Changes.store.Configurations', {
extend: 'Ext.data.Store',
requires: ['Ext.data.proxy.LocalStorage'],
config: {
model: 'Changes.model.Configuration',
grouper: {
sortProperty: "ciName",
direction: "DESC",
groupFn: function (record) {
return record.get('ciName')[0];
}
},
proxy: {
type: 'ajax',
url: 'services/configurationItems.php',
reader: {
type: 'json',
rootProperty: 'configurationItems'
}
}
}
});
我返回的 JSONservices/changes.php
如下所示:
{
"success": true,
"changes": [
{
"id": 1,
"changeId": "XYZ19178263",
"briefDescription": "Loaded from Proxy",
"configuration_id": 3,
"configurations": [
{
"id": "3",
"longName": "999-99_-_windows_7_desktop.Computer.Windows",
"ciName": "999-99_-_windows_7_desktop"
}
]
}
]
}
在浏览器的控制台中,我可以发出以下命令:
Changes.myStore = Ext.getStore('Changes');
Changes.myStore.load();
Changes.record = Changes.myStore.findRecord('id', '1');
Changes.record.getAssociatedData()
最后一个命令将返回一个内部带有配置对象的对象,但所有字段值都会显示null
,除了id
似乎设置为随机值的字段值:
Object
Configuration: Object
ciName: null
id: "ext-record-11"
longName: null
谁能看到为什么Configuration
我的 JSON 中的嵌套实例没有被保存?JSON 中的嵌套Configuration
实例是否应该自动添加到Configurations
存储中?