摘要:
ExtJs之Ext.data.StoreStore.getCount()返回的是store中的所有数据记录,然后使用for循环遍历整个store,从而得到每条记录。除了使用getCount()的方法外,还可以使用each()函数,如下面的代码所示。store.each(function(record){ alert(record.get('name')); });store.each(function(record) { alert(record.get('name'));});Each()可以接受一个函数作为参数,遍历内部record,并将每个record作为 阅读全文