8
誰かがSencha Ext.eachループから抜け出す方法を教えてもらえますか?Sencha:Ext.eachから抜け出す方法
誰かがSencha Ext.eachループから抜け出す方法を教えてもらえますか?Sencha:Ext.eachから抜け出す方法
私はあなたが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*/
}
});