1

我有商店('mystore')我想检查给定的商店是否为空,请帮助我我对 ExtJs 很陌生。我阅读了 ExtJsAPI 但我找不到解决方案

if(isempty(mystore)){
    do something....
}
4

2 回答 2

2
if(mystore.getCount()==0) {
    //do something
}
于 2013-05-13T15:08:38.090 回答
2

店铺的使用getTotalCount方法。

if(store.getTotalCount()>0){
     //Store is not empty
} else{
     //Store empty
}

或使用Ext.isEmpty方法。

if(!Ext.isEmpty(store)){
     //Store is not empty
} else{
     //Store empty
}
于 2015-04-08T11:43:06.693 回答