这里需要记录下你当前选中check的状态(具有唯一性的都可以)。我是直接存在storage里面了。然后切换的时候拿数据列表的值和缓存中的值进行比较。如果符合的话就选中。但是一般的单层for循环无法完成。会有一些问题达不到目的。利用双层循环的话来比对他们的值就行了
reg = "缓存数组中的值" this.goodsList = "拿到的数据" for (let i = 0; i < this.goodsList.length; i++) { for (let j = 0; j < reg.length; j++) { if(this.goodsList[i].id == reg[j]){ console.log("完美匹配"); this.goodsList[i].check = true; }else{ console.log("没有匹配到"); } } }
原文地址:https://www.cnblogs.com/kangshuishneg/p/11577392.html
时间: 2024-10-08 04:28:57