我正在使用store.load处理一些代码。这是我的榜样。
function callLibFunc() {
MyLib.loadSidebar();
}
有没有办法在store.load之外访问records.length? 例如,像这样的东西?
store.load({
callback: function(records, operation, success) {
if(success){
var id = store.getAt(0).data.id;
}
});
答案 0 :(得分:0)
是的,你可以做到。
//Get the store
var store = Ext.getStore("STORE_NAME")
//now get the data response set in the store
var myDataResponse = store.proxy.reader.rawData
//myDataResponse is the full set of records in the store
希望它有所帮助!