介绍:
js中的forEach()方法会对目标数据中的每个元素执行一次循环(提供的函数体),返回 undefined
forEach()方法使用时,function回调有三个参数:
第一个参数是的数组中当前遍历的元素;
第二个参数是对应的数据索引;
第三个参数是数组本身
[ ].forEach(function(value,index,array){
//函数体
});
跳出循环:
try {
this.tableData.forEach((tem) => {
//函数体
throw new Error("EndIterative");//抛出错误异常
});
} catch (e) {
if (e.message != "EndIterative") throw e;
}