当前位置: 代码迷 >> JavaScript >> 解析靠山JSON构建JsonStore
  详细解决方案

解析靠山JSON构建JsonStore

热度:146   发布时间:2012-11-05 09:35:12.0
解析后台JSON构建JsonStore
var _store = new Ext.data.JsonStore({
proxy:new Ext.data.HttpProxy({ //使用代理获得data数据
url:"http://..."
}),
fields:['name','sex','age']
});

只要使用了代理必须要load数据
_store.load();
_store.on('load',function(_store){
alert(_store.getCount());
alert(Ext.util.JSON.ecode(_store.getAt(0).data));
alert(_store.getAt(0).get('age'));
});
  相关解决方案