Angular JS打破了ForEach

时间:2012-12-12 16:16:39

标签: angularjs javascript-framework

我有一个角度的foreach循环,如果我匹配一个值,我想从循环中断。以下代码不起作用。

angular.forEach([0,1,2], function(count){
  if(count == 1){
    break;
  }
});

我怎么能得到这个?

21 个答案:

答案 0 :(得分:286)

angular.forEach循环在条件匹配时无法中断。

我个人的建议是使用 NATIVE FOR 循环代替angular.forEach

NATIVE FOR循环比其他for循环快 90%

For loop break , for loop test result

USE FOR循环ANGULAR:

var numbers = [0, 1, 2, 3, 4, 5];

for (var i = 0, len = numbers.length; i < len; i++) {
  if (numbers[i] === 1) {
    console.log('Loop is going to break.'); 
    break;
  }
  console.log('Loop will continue.');
}

答案 1 :(得分:254)

没有办法做到这一点。见https://github.com/angular/angular.js/issues/263。根据你正在做的事情,你可以使用布尔值来进入循环体。类似的东西:

var keepGoing = true;
angular.forEach([0,1,2], function(count){
  if(keepGoing) {
    if(count == 1){
      keepGoing = false;
    }
  }
});

答案 2 :(得分:22)

请使用ForEach的部分或全部实例,

Array.prototype.some:
some is much the same as forEach but it break when the callback returns true

Array.prototype.every:
every is almost identical to some except it's expecting false to break the loop.

一些例子:

var ary = ["JavaScript", "Java", "CoffeeScript", "TypeScript"];

ary.some(function (value, index, _ary) {
    console.log(index + ": " + value);
    return value === "JavaScript";
});

每个例子:

var ary = ["JavaScript", "Java", "CoffeeScript", "TypeScript"];

ary.every(function(value, index, _ary) {
    console.log(index + ": " + value);
    return value.indexOf("Script") > -1;
});

查找更多信息
http://www.jsnoob.com/2013/11/26/how-to-break-the-foreach/

答案 3 :(得分:17)

使用Array Some Method

 var exists = [0,1,2].some(function(count){
      return count == 1
 });

exists将返回true,您可以将其用作函数中的变量

if(exists){
    console.log('this is true!')
}

Array Some Method - Javascript

答案 4 :(得分:6)

如果你将jQuery(因此不是jqLit​​e)与AngularJS结合使用,你可以使用$ .each进行迭代 - 它允许基于布尔返回值表达式进行断开和继续。

的jsfiddle:

http://jsfiddle.net/JEcD2/1/

使用Javascript:

var array = ['foo', 'bar', 'yay'];
$.each(array, function(index, element){
    if (element === 'foo') {
        return true; // continue
    }
    console.log(this);
    if (element === 'bar') {
        return false; // break
    }
});

注意:

尽管使用jQuery并不错,但MDN建议使用本地Array.someArray.every函数,因为您可以阅读本机forEach文档:

  

“无法停止或中断forEach循环。解决方案是使用Array.every或Array.some”

以下示例由MDN提供:

Array.some:

function isBigEnough(element, index, array){
    return (element >= 10);
}
var passed = [2, 5, 8, 1, 4].some(isBigEnough);
// passed is false
passed = [12, 5, 8, 1, 4].some(isBigEnough);
// passed is true

Array.every:

function isBigEnough(element, index, array){
    return (element >= 10);
}
var passed = [12, 5, 8, 130, 44].every(isBigEnough);
// passed is false
passed = [12, 54, 18, 130, 44].every(isBigEnough);
// passed is true

答案 5 :(得分:6)

具体地说,您可以退出forEach循环,并且可以抛出异常。

try {
   angular.forEach([1,2,3], function(num) {
      if (num === 2) throw Error();
   });
} catch(e) {
    // anything
}

但是,最好使用其他库或实现自己的函数,在这种情况下使用find函数,因此您的代码是最高级的。

答案 6 :(得分:6)

据我所知,Angular没有提供这样的功能。你可能想要使用下划线的find()函数(它基本上是一个forEach,一旦函数返回true就会突破循环)。

http://underscorejs.org/#find

答案 7 :(得分:3)

正如其他答案所述,Angular并未提供此功能。但是jQuery会这样做,如果你加载了jQuery和Angular,你可以使用

jQuery.each ( array, function ( index, value) {
    if(condition) return false; // this will cause a break in the iteration
})

请参阅http://api.jquery.com/jquery.each/

答案 8 :(得分:3)

通常没有办法打破&#34;每个&#34;在JavaScript中循环。 通常可以做的是使用&#34;短路&#34;方法

&#13;
&#13;
    array.forEach(function(item) {
      // if the condition is not met, move on to the next round of iteration.
      if (!condition) return;

      // if the condition is met, do your logic here
      console.log('do stuff.')
    }
&#13;
&#13;
&#13;

答案 9 :(得分:2)

break无法在angular forEach中实现,我们需要修改forEach才能做到这一点。

$scope.myuser = [{name: "Ravi"}, {name: "Bhushan"}, {name: "Thakur"}];  
                angular.forEach($scope.myuser, function(name){
                  if(name == "Bhushan") {
                    alert(name);
                    return forEach.break(); 
                    //break() is a function that returns an immutable object,e.g. an empty string
                  }
                });

答案 10 :(得分:2)

试试这个休息;

angular.forEach([0,1,2], function(count){
  if(count == 1){
    return true;
  }
});

答案 11 :(得分:2)

您可以使用:

var count = 0;
var arr = [0,1,2];
for(var i in arr){
   if(count == 1) break;
   //console.log(arr[i]);
}

答案 12 :(得分:1)

var ary = ["JavaScript", "Java", "CoffeeScript", "TypeScript"];
var keepGoing = true;
ary.forEach(function(value, index, _ary) {
    console.log(index)
    keepGoing = true;
    ary.forEach(function(value, index, _ary) {
        if(keepGoing){ 
            if(index==2){
                keepGoing=false;
            }
            else{
                console.log(value)
            }

        }      
    });
});

答案 13 :(得分:0)

$scope.arr = [0, 1, 2];  
$scope.dict = {}
for ( var i=0; i < $scope.arr.length; i++ ) {
    if ( $scope.arr[i] == 1 ) {
        $scope.exists = 'yes, 1 exists';
        break;
    }
 }
 if ( $scope.exists ) {
     angular.forEach ( $scope.arr, function ( value, index ) {
                      $scope.dict[index] = value;
     });
 }

答案 14 :(得分:0)

我希望通过返回来做到这一点。将循环部分放在私有函数中,并在想要中断循环时返回。

答案 15 :(得分:0)

此示例有效。试试吧。

var array = [0,1,2];
for( var i = 0, ii = array.length; i < ii; i++){
  if(i === 1){
   break;
  }
}

答案 16 :(得分:0)

我意识到这是旧的,但是数组过滤器可以满足您的需求:

var arr = [0, 1, 2].filter(function (count) {
    return count < 1;
});

然后,您可以运行arr.forEach和其他数组函数。

我意识到如果你打算完全减少循环操作,这可能不会做你想要的。为此,您最好使用while

答案 17 :(得分:0)

使用Return中断循环。

angular.forEach([0,1,2], function(count){
  if(count == 1) {
    return;
  }
});

答案 18 :(得分:0)

onSelectionChanged(event) {
    let selectdata = event['api']['immutableService']['gridOptionsWrapper']['gridOptions']['rowData'];
    let selected_flag = 0;

    selectdata.forEach(data => {
      if (data.selected == true) {
        selected_flag = 1;
      }
    });

    if (selected_flag == 1) {
      this.showForms = true;
    } else {
      this.showForms = false;
    }
}

答案 19 :(得分:-1)

我将使用return而不是break

angular.forEach([0,1,2], function(count){
  if(count == 1){
    return;
  }
});

像魅力一样工作。

答案 20 :(得分:-2)

只需添加$ index并执行以下操作:

angular.forEach([0,1,2], function(count, $index) {
     if($index !== 1) {
          // do stuff
     }
}