B数组 据 A数组中的数据进行筛选


	B数组 据 A数组中的数据进行筛选
[编程语言教程]

技术图片

代码模块: A数组  aa;  B数组  this.listOfAllData

   aa.forEach(data => {             //遍历A数组

        this.listOfAllData.map(v => {       //遍历B数组

          if (v.sectionId === Number(data)) {        //判断
paraList.push({ //push到新数组中 highwayId: v.highwayId, sectionId: v.sectionId });
} }); });
hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » B数组 据 A数组中的数据进行筛选