0

我是 extjs 的新手,正在根据 Ext.data.store() 的记录数创建一个动态屏幕;getTotalCount/getCount 用于从存储中获取记录数。我需要将记录总数存储在 var 中并返回

我正在尝试做这样的事情

function Get_count()
{  
     var num;                            
     CacheStore.on({

           'load':{

            fn : function(store,records,options){
                    num = getTotalCount();
                    //console.info('Store count = ', tsize);
                    //console.info(' count = ', getCount());
            },
            scope: this
    },
    'loadexception' : {
            fn : function (obj,options,response,e){
                    //console.info('error = ', e);
            },
    scope : this
    }

});

     // this is a wrong logic but have to do something similar 
    //return num;  //return num 

    };
    tsize  = Get_count();

我总是在 tsize 中得到空值。我也尝试了 getCount() 而不是 getTotalCount() 但我遇到了同样的问题。

不知道我哪里错了

4

1 回答 1

1

你的逻辑有点戳这里。您不能触发将侦听器添加到商店的函数,该函数将在商店完成加载时挂钩。(你可以,但这是一个微妙的错误)。

您需要做的是在创建它时在商店中声明一个侦听器,其中包含您要在其中使用数字的功能。

cacheStore =Ext.create...
cacheStore.on('load',function(store,records,e){
    //dosomestuff that needs the count
    var num=  store.totalCount()
    //now you use the num in here, else you create an async error

    //or you can ...
    my.someFunc(num); 
    //in here, but you can only run it after the store has loaded
},this);
于 2012-06-05T15:08:32.463 回答