想请教下,关于一个数组对象的操作,谢谢大家?

this.shop_data
this.shop_data_storage

我有上面两个数组对象,他们里面都共有一个属性名is_selector_val,

我想把this.shop_data_storage 的 每项里的is_selector_val 的值 赋值给this.shop_data的每项里的is_selector_val

请问如何去写?我目前能想到的 就是类似下面这种思路

this.shop_data.map(item1=>{

this.shop_data_storage.map(item2=>{

item1.is_selector_val = item.is_selector_val

})

})

这样好像也不行,只能去改变this.shop_data 原数组对象,而不能去赋新值,因为我这是搜索结果里的数据


回答:

this.shop_data.forEach((item, index) => {

item.is_selector_val = this.shop_data_storage[index]?.is_selector_val;

})

以上是 想请教下,关于一个数组对象的操作,谢谢大家? 的全部内容, 来源链接: utcz.com/p/933063.html

回到顶部