我想获取在其外部的forEach循环内生成的变量的值,请查看代码段:
var variable = "";
array.forEach(el=>{
variable = el.checkStatus;
})
//How to get the value of variable here ?
答案 0 :(得分:1)
var statuses = array.map(el => {
return el.checkStatus;
})
然后根据您想要的状态调用状态[index]
答案 1 :(得分:0)
您可以使variable
成为每个元素checkStatus
值的数组。
var variable = new Array();
array.forEach(el => {
variable.push(el.checkStatus());
})
虽然使用数组map
函数可以更优雅地完成。
var variable = array.map(el => el.checkStatus())