0

我有一个控制器函数,它返回这样的 json 字符串:

 [
    { "id": 5, "label": "label1", "type": 1, "arr": [0,1,1,2,3,1,2,0]},
    { "id": 6, "label": "label2", "type": 2, "arr": [1,1,2,2,3,1,2,3]}
 ]

我想为这个 json 创建一个适当的 ext.data.model 以便当我的商店读取 json 时它可以正常工作。

模型会是什么样子?我不知道

到目前为止我有这个模型

   Ext.define('MyModel', {
        extend: 'Ext.data.Model',
        fields: [
            {name: 'id', type: 'int'},
            {name: 'label', type: 'string'},
            {name: 'type', type: 'int'},
            {name: 'arr', type: 'auto'}
        ]
    });

还有这家店

   // The data store containing the list of states
    var myStore = Ext.create('Ext.data.Store', {
        model: 'MyModel',

        proxy: {
            type: 'ajax',
            url: '/url/to/jsonpage',
            reader: {
                type: 'json',
                root: 'MyModel'
            }
        }
        //autoLoad: true,
        //autoSync:true
    });
4

0 回答 0