我正在寻找一种方法将这样的响应转换为模型(作为模型的字符串列表?):
{
"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'
}
}
});
答案 0 :(得分:0)
小助手类,可以更轻松地从Array数据创建Ext.data.Stores。 ArrayStore将自动配置Ext.data.reader.Array。