数组/字符串列表作为模型

时间:2014-09-10 15:19:16

标签: javascript extjs extjs4 extjs4.1

我正在寻找一种方法将这样的响应转换为模型(作为模型的字符串列表?):

{
    "success": true,
    "msg": null,
    "data": [
        "string 1",
        "string 2",
        "string 3",
        "string 4"
    ],
    "errors": null
}

通常情况下,我会使用普通商店,但使用什么作为模型?

Ext.define('myStoreName', {
    extend : 'Ext.data.Store', 
    model : ???, //What to use in here, or which store to extend?
    proxy : {
        type : 'betterrest',
        url : 'myUrl',
        headers : {
            'Accept' : 'application/json'
        },
        reader : {
            type : 'json',
            root : 'data',
            totalProperty : 'total',
            successProperty : 'success'
        }
    }
});

1 个答案:

答案 0 :(得分:0)

使用Ext.data.ArrayStore

  

小助手类,可以更轻松地从Array数据创建Ext.data.Stores。 ArrayStore将自动配置Ext.data.reader.Array。