我有一个角度foreach循环,如果我匹配一个值,我想从循环中断。以下代码不工作。
angular.forEach([0,1,2],function(count){ if(count == 1){ break; } });
我怎么能得到这个?
没有办法这样做。参见
https://github.com/angular/angular.js/issues/263.根据你在做什么,你可以使用布尔值只是不进入循环体。就像是:
原文链接:https://www.f2er.com/angularjs/147645.htmlvar keepGoing = true; angular.forEach([0,function(count){ if(keepGoing) { if(count == 1){ keepGoing = false; } } });