B数组 据 A数组中的数据进行筛选
2021-03-13 10:39
标签:模块 image ima cti 筛选 ber == mamicode ali 代码模块: A数组 aa; B数组 this.listOfAllData B数组 据 A数组中的数据进行筛选 标签:模块 image ima cti 筛选 ber == mamicode ali 原文地址:https://www.cnblogs.com/a1-top/p/14057222.html aa.forEach(data => { //遍历A数组
this.listOfAllData.map(v => { //遍历B数组
if (v.sectionId === Number(data)) { //判断
paraList.push({ //push到新数组中
highwayId: v.highwayId,
sectionId: v.sectionId
});
}
});
});