{"limit":4,"root":
[{"accountDetial":"杀手","accountId":"197213","commingAddr":"北京","commingTime":"2009-12-08 15:27:25"}],
"start":0,"success":true,"totalProperty":1}
store数据如上所示,是否可以取到 "account_id" 的数据呢?该怎么取?
var accountId = store.getAt(0).get('accountId');
var store = Ext.getCmp('grid id').store;
var record = store.data.items[0];
alert(record.data.accountId);