我有一张名为employee的表。 empid和empname是2个字段。我想通过Web服务从该表获取数据到sencha触摸列表视图。我的Web服务正在返回json数据;我的意思是我将输出转换为json。我的javascript代码如下
Ext.data.JsonStore({
proxy: new Ext.data.HttpProxy({
url: 'http://localhost:58984/Service1.asmx/GetListData', // werservicename.asmx/webMethodName
headers: {
'content-type': 'application/json'
}
}),
root: 'd',
idProperty: 'empid', // provide the unique id of the row
fields: [empname] // specify the array of fields
});
itemTpl: '{empname}'
但我收到2个错误:
empname
未定义答案 0 :(得分:0)
如果您确切地指出错误发生的位置会很好,但对于nr1,问题可能是fields: [empname]
应该是fields: ['empname']
。
不确定nr1和nr2是否相关,但如果修复第一个错误并不能解决您的问题,那么您真的需要向我们展示您的Main.js
希望这有帮助