解析后台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'));
});