我尝试将 JSON 响应中的值加载到列表中,它没有显示任何值。这是我的 JSON 请求
http://117.218.59.157:8080/WishList/ShowItems/userID=1
GET method
JSON 响应
这是我的列表代码
Ext.regModel('Filiale', {
fields: ['itemID', 'itemName', 'itemImage'],
});
var tab= Ext.create('Ext.List', {
width: 320,
height: 290,
model: 'Filiale',
store: {
fields: ['itemName','itemImage'],
proxy: {
type: 'ajax',
method: 'GET',
url : 'http://117.218.59.157:8080/WishList/ShowItems/userID=1',
reader: {
type: 'json'
}
}
},
itemTpl: '<img src="{itemImage}" width="35" heigh="35"></img><span>   {itemName}'
});
我认为列表中的语法有问题。谁能帮我解决