Sencha:如何打破Ext.each

时间:2012-02-03 18:13:18

标签: sencha-touch extjs

有人能告诉我如何摆脱Sencha Ext.each循环吗?

1 个答案:

答案 0 :(得分:14)

如果你返回false,

找到我自己的答案,它不会在循环中进行下一次迭代。

Ext.each(arrayObj, function(obj){
    if(obj.isSomethingTrue()){
        doSomething();
        return false; /*this will prevent each from looking at 
                        the next obj in the arrayObj*/
    }
});