Ext.each(arrayObj, function(obj){
if(obj.isSomethingTrue()){
doSomething();
return false; /*this will prevent each from looking at
the next obj in the arrayObj*/
}
});
Ext each 不是使用break,是使用return false 跳出循环
最新推荐文章于 2021-08-31 14:20:59 发布