js遍历集合中的数据取值 res.items我后端返回的数据集合 const array= res.items; options.map( (item)=> { if(item.code==value){ } }); 第二种 // for (let item of array) { // if(item.code==value){ // } // }