怎么替换数组中对象的属性
2021-04-09 23:25
标签:认证 生活 实名认证 数组 item value ret 体验 label 用es6 第二种: 比较傻瓜的 好好生活-_- 怎么替换数组中对象的属性 标签:认证 生活 实名认证 数组 item value ret 体验 label 原文地址:https://www.cnblogs.com/antyhouse/p/13371217.html
第一种: ...item根据你的需求,可要可不要 let arr = [
{id: 1, title: "绑定手机"},
{id: 2, title: "实名认证"},
{id: 3, title: "游戏分享任务"},
{id: 12, title: "游戏体验任务"},
{id: 13, title: "游戏时长任务"}
]
const res = arr.map(item=>({...item, label: item.title, value: item.id}))
console.log(res);
let arr = [
{id: 1, title: "绑定手机"},
{id: 2, title: "实名认证"},
{id: 3, title: "游戏分享任务"},
{id: 12, title: "游戏体验任务"},
{id: 13, title: "游戏时长任务"}
]
let arrNew = arr.map((item) => {
item.label = item.title
item.value = item.id
return item
})
console.log(arrNew);