我在Sencha同事的帮助下解决了这个问题。谢谢丹。解决方法如下:
- 在Web服务器上运行示例,因为从文件系统加载JSON文件有时可能会导致问题。
构造json数据如下
{"data": [ { "School": "Dukes", "wins": "3" }, { "School": "Emmaus", "wins": "10" }, { "School": "Maryland", "wins": "5" }, { "School": "Virginia", "wins": "2" }]
}
使用以下数据存储
window.store1 = new Ext.data.Store({model: 'Details',proxy: { type: 'ajax', url: 'GetDataset.json', reader: { root: 'data', type: 'json' }},autoLoad: true
});
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)