有人能告诉我如何摆脱Sencha Ext.each循环吗?
答案 0 :(得分:14)
找到我自己的答案,它不会在循环中进行下一次迭代。
Ext.each(arrayObj, function(obj){
if(obj.isSomethingTrue()){
doSomething();
return false; /*this will prevent each from looking at
the next obj in the arrayObj*/
}
});