cursor.forEach() 中的 “continue”

2022-08-29 23:37:38

我正在使用meteor.js和MongoDB构建一个应用程序,我有一个关于cursor.forEach()的问题。我想在每次 forEach 迭代开始时检查一些条件,然后跳过该元素(如果我不必对它执行操作),这样我就可以节省一些时间。

这是我的代码:

// Fetch all objects in SomeElements collection
var elementsCollection = SomeElements.find();
elementsCollection.forEach(function(element){
  if (element.shouldBeProcessed == false){
    // Here I would like to continue to the next element if this one 
    // doesn't have to be processed
  }else{
    // This part should be avoided if not neccessary
    doSomeLengthyOperation();
  }
});

我知道我可以使用 cursor.find().fetch() 将光标转换为数组,然后使用常规 for 循环来迭代元素并正常使用 continue 和 break,但我对是否有类似于 forEach() 中使用的内容感兴趣。


答案 1

的每次迭代都将调用您提供的函数。要在任何给定的迭代中停止进一步的处理(并继续下一项),您只需要在适当的位置从函数开始:forEach()return

elementsCollection.forEach(function(element){
  if (!element.shouldBeProcessed)
    return; // stop processing this iteration

  // This part will be avoided if not neccessary
  doSomeLengthyOperation();
});

答案 2

在我看来,通过使用该方法实现这一目标的最佳方法,因为在块中返回是没有意义的;有关代码段的示例:filterforEach

// Fetch all objects in SomeElements collection
var elementsCollection = SomeElements.find();
elementsCollection
.filter(function(element) {
  return element.shouldBeProcessed;
})
.forEach(function(element){
  doSomeLengthyOperation();
});

这将缩小您的范围,只保留应该处理的元素。elementsCollectionfiltred