for in常用于Object,而要遍历Array最好还是用for of
//for of
for(let items of productsData){
for(let item of items.products){
if(item.id == id){
this.setData({ product: item });
}
}
}
//for in 在这里失效了,遍历出来的items 只有对应的下标index
for(let items of productsData){
for(let item of items.products){
if(item.id == id){
this.setData({ product: item });
}
}
}
网友评论