4

我已经开始创建一个 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存储中?

4

2 回答 2

2

可悲的是,这只是行不通。看来是框架的一个缺点。您无法加载和保存关联(聚合/嵌套)对象。您需要展平结构,然后自己在代码中关联对象。

因此,例如...您的 JSON 将是...

{
"success": true,
"changes": [
    {
        "id": 1,
        "changeId": "XYZ19178263",
        "briefDescription": "Loaded from Proxy"
    }
]

}

第二个 JSON 文件/响应如下:

    {

    "success": true,
    "configurations": [
                {
                    "id": "3",
                    "longName": "999-99_-_windows_7_desktop.Computer.Windows",
                    "ciName": "999-99_-_windows_7_desktop",
                    "change_id": 1
                }
            ]
    }
于 2012-06-14T21:22:41.520 回答
2

Tinashe 的回答不正确。您当然可以获得嵌套模型。

但是,您的关联与 JSON 相关。

 "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"
                }
            ]
        }
    ]

意味着一个变化有很多配置,但你是说它属于它。这是正确的 JSON:

 "changes": [
        {
            "id": 1,
            "changeId": "XYZ19178263",
            "briefDescription": "Loaded from Proxy",
            "configuration_id": 3,
            "configuration": 
                {
                    "id": "3",
                    "longName": "999-99_-_windows_7_desktop.Computer.Windows",
                    "ciName": "999-99_-_windows_7_desktop"
                }

        }
    ]

无论哪种方式,您都需要在关系上设置 getterName(如果您也喜欢 setterName):

associations: [{
            type:'belongsTo', 
            model:'Changes.model.Configuration',
            primaryKey: 'id',
            foreignKey: 'configuration_id',
            associationKey: 'configuration',
            getterName:'getConfiguration'
        }]

然后在 store 加载之后,你可以调用 myChangeModel.getConfiguration();

于 2013-04-10T07:48:16.537 回答