我创建了一个包含对象的数组数组,
我在我的数组上循环,对于包含 y == 5 的对象,我影响对象的布尔变量,然后我通过条件阻止访问,
但是我看到下一个数组上的同一个对象受到了同一个布尔变量的影响,并且我的控制台日志显示该影响仅按时执行,如何阻止对下一个数组元素的影响变量?
代码
test: function(req, res){
console.log("yesss")
var a = {x:1}
let b = {x:2}
let c = {x:3}
let d = {x:4}
let tab1 = []
a.y = 5
b.y = 10
c.y = 10
d.y = 10
let group1 = [a, c, d]
let group2 = [a, b, d]
tab1.push(group1)
tab1.push(group2)
let test = false
async.each(tab1, function(group, next){
group.forEach(function(elem){
if(elem.y == 5 && !test)
{
console.log("******* executed ******")
test = true
elem.bool = true
}
console.log("elem : ", elem)
})
next()
}, function(){
return res.status(200).json({success: true, data: tab1})
})
},
这是我的控制台日志
控制台日志
******* executed ******
elem : { x: 1, y: 5, bool: true }
elem : { x: 3, y: 10 }
elem : { x: 4, y: 10 }
elem : { x: 1, y: 5, bool: true }
elem : { x: 2, y: 10 }
elem : { x: 4, y: 10 }
JsonReturn
{
"success": true,
"data": [
[
{
"x": 1,
"y": 5,
"bool": true
},
{
"x": 3,
"y": 10
},
{
"x": 4,
"y": 10
}
],
[
{
"x": 1,
"y": 5,
"bool": true
},
{
"x": 2,
"y": 10
},
{
"x": 4,
"y": 10
}
]
]
}
慕哥6287543
慕神8447489
杨__羊羊
相关分类