我不知道问题是否应该针对打字稿或角度2
如何在角度2中返回forEach?
我有以下内容:
let info = this.array.forEach((i, index) => {
.....
.....
return res;
});
console.log(info);
已退回 - >未定义
有谁知道如何获得此回报?
答案 0 :(得分:3)
Javascript数组提供内置函数,称为map,filter等。因此,您可以使用map来遍历数组中的值。
let info = this.array.map((res,key) => {
//key can also be accessible
return res;
});
console.log(info);