gpt4 book ai didi

javascript - 分机 Js : How to load a store from List

转载 作者:行者123 更新时间:2023-11-29 15:41:25 27 4
gpt4 key购买 nike

这是我从服务器返回的 JSON 数据。我没有看到我的组合被加载。这里有什么问题?

{"suffixList":["-1","-2","-3"]}

型号:

Ext.define('ExtMVC.model.Suffix', {
extend: 'Ext.data.Model',
fields: [
{name: 'suffix'}
]
});

商店:

 Ext.define('ExtMVC.store.Suffixes', {
extend: 'Ext.data.Store',
model: 'ExtMVC.model.Suffix',
autoLoad : false,
proxy: {
type: 'ajax',
url: 'http://'+window.location.host+'/populateCombo',
reader: {
type: 'json',
root: 'suffixList'
}
}
});

查看:

{
xtype:'combo',
id: 'suffix',
name: 'suffix',
store : 'Suffixes',
displayField: 'suffix',
valueField: 'suffix'
}

最佳答案

您可以使用 ArrayStore

new Ext.data.ArrayStore({
fields: ['suffix'],
data: {suffixList: ['-1', '-2', '-3']},
proxy: {
type:'memory', //'ajax'
reader: {
type: 'array',
root: 'suffixList'
}
}
})

关于javascript - 分机 Js : How to load a store from List<String>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18472807/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com