如何终止 javascript forEach()?


你无法跳出 forEach 方法,它也没有提供退出循环的方法(除了抛出异常)。

你可以改用其他功能,如 lodash 中的 _.find −

_.find − 当找到元素时,会退出循环。例如,

示例

_.find([1, 2, 3, 4], (element) => {
   // Check your condition here
   if (element === 2) {
      return true;
   }
   // Do what you want with the elements here
   // ...
});

forEach 中抛出异常。例如,

示例

try {
   [1, 2, 3, 4].forEach((element) => {
      // Check your condition here
      if (element === 2) {
         throw new Error();
      }
      // Do what you want with the elements here
      // ...
   })
} catch (e) {
   // Do nothing.
}

更新于: 27-11-2019

454 浏览量

提升你的 职业生涯

完成课程,获得认证

开始学习
广告