js 数组值改变?
lettemp=[{url:"https://zhidao.baidu.com/new?word=&ie=GBK&entry=common_header",isUse:0...
let temp = [{
url: "https://zhidao.baidu.com/new?word=&ie=GBK&entry=common_header",
isUse: 0
}
{
url: "https://zhidao.baidu.com/new?word=&ie=GBK&entry=common_header",
isUse: 0
}
{
url: "https://zhidao.baidu.com/new?word=&ie=GBK&entry=common_header",
isUse: 0
}
]
怎么改变上面数组中的每个isUse,让它值都为1。
url不变
需要的结果是这样的
let temp = [{
url: "https://zhidao.baidu.com/new?word=&ie=GBK&entry=common_header",
isUse: 1
}
{
url: "https://zhidao.baidu.com/new?word=&ie=GBK&entry=common_header",
isUse:1
}
{
url: "https://zhidao.baidu.com/new?word=&ie=GBK&entry=common_header",
isUse:1
}
] 展开
url: "https://zhidao.baidu.com/new?word=&ie=GBK&entry=common_header",
isUse: 0
}
{
url: "https://zhidao.baidu.com/new?word=&ie=GBK&entry=common_header",
isUse: 0
}
{
url: "https://zhidao.baidu.com/new?word=&ie=GBK&entry=common_header",
isUse: 0
}
]
怎么改变上面数组中的每个isUse,让它值都为1。
url不变
需要的结果是这样的
let temp = [{
url: "https://zhidao.baidu.com/new?word=&ie=GBK&entry=common_header",
isUse: 1
}
{
url: "https://zhidao.baidu.com/new?word=&ie=GBK&entry=common_header",
isUse:1
}
{
url: "https://zhidao.baidu.com/new?word=&ie=GBK&entry=common_header",
isUse:1
}
] 展开
2020-05-09
展开全部
let temp = [{
url: "https://zhidao.baidu.com/new?word=&ie=GBK&entry=common_header",
isUse: 0
},
{
url: "https://zhidao.baidu.com/new?word=&ie=GBK&entry=common_header",
isUse: 0
},
{
url: "https://zhidao.baidu.com/new?word=&ie=GBK&entry=common_header",
isUse: 0
}
]
// 方法1
temp = Array.from(temp, item => {
item.isUse = 1
return item
})
// 方法2
temp = temp.map(item => {
item.isUse=1
return item
})
// 方法3
temp.forEach(item => item.isUse = 1)
console.log(temp)
url: "https://zhidao.baidu.com/new?word=&ie=GBK&entry=common_header",
isUse: 0
},
{
url: "https://zhidao.baidu.com/new?word=&ie=GBK&entry=common_header",
isUse: 0
},
{
url: "https://zhidao.baidu.com/new?word=&ie=GBK&entry=common_header",
isUse: 0
}
]
// 方法1
temp = Array.from(temp, item => {
item.isUse = 1
return item
})
// 方法2
temp = temp.map(item => {
item.isUse=1
return item
})
// 方法3
temp.forEach(item => item.isUse = 1)
console.log(temp)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询