美文网首页
向数组对象中添加属性

向数组对象中添加属性

作者: 装装_1ad7 | 来源:发表于2019-11-11 11:20 被阅读0次

向数组infoLists中每个对象添加名为imgSrc的属性,属性值从数组imgUrl中获取

var arr = this.infoList
var curData = []

arr.forEach((item, index) => {
    curData.push(
        Object.assign({}, item, {‘imgSrc’: this.imgUrl[index]})
    )
}
this.infoList = []
this.infoList = curData

 

 

 

 

 

未来还长,热血未凉

相关文章

网友评论

      本文标题:向数组对象中添加属性

      本文链接:https://www.haomeiwen.com/subject/vdxtictx.html