//后台数组格式[['小张',28,'男'],['小李',25,'女']]
var _store = new Ext.data.SimpleStore(
url:'http://', //代理的简写
fields:['name','sex','age']
);
_store.load();
_store.on('load',funciton(_store){
alert(_store.getCount());
alert(Ext.util.JSON.encode(_store.getAt(0).data));
});