,store: new Ext.data.Store({ url:'billSetting/calltype/list.cctc' ,autoLoad : true ,method: 'GET' ,reader:new Ext.data.JsonReader({ root:'json.root' ,totalProperty:'json.totalProperty' },[{ name: 'xh' },{ name: 'calltypeName' },{ name: 'calltypeNameEn' }]) }) 可以把[{name:'xh'}]简写成['xh'] |