如何在store.load中访问回调和加载函数之外的变量值?

时间:2015-06-24 18:38:21

标签: extjs extjs4

我正在使用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;
               }
    });

1 个答案:

答案 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

希望它有所帮助!