我收到了这个错误。
未捕获的TypeError:无法调用未定义的方法'indexOf'。
var infost = Ext.create('Ext.data.JsonStore', {
itemId:'infostore',
autoLoad:true,
fields:['Name','Address','Trade'],
Proxy:{
type:'Ajax',
url:'mera.json',
actionMethods: {
read: 'POST'
},
reader:{
type : 'json',
root:'data',
totalProperty:'total',
record:'stu'
}
}
});