数组转对象
// 数组转对象
arrToObj (arr) {
if (arr.length === 0) {
return null
}
return arr.reduce((obj, item) => {
obj[item.name] = item.value
return obj
}, {})
}
},
数组转对象
// 数组转对象
arrToObj (arr) {
if (arr.length === 0) {
return null
}
return arr.reduce((obj, item) => {
obj[item.name] = item.value
return obj
}, {})
}
},
本文标题:JS数组转对象
本文链接:https://www.haomeiwen.com/subject/ajxdirtx.html
网友评论