现在有一些不等的数据 我需要通过前端 吧这个数据筛选一下 比如我使用一些 我需要的ID
下的数据
比如以上的数据 的 cinemaLineId 来筛选
const cinemaLineId = ref(["1246429254713147392", "1182608813770321920", "1182608917403185152"])
需要以上数组中的cinemaLineId
前端来筛选一下
const filteredData = res.data.filter(item => {return cinemaLineId.value.includes(item.cinemaLineId);});cinemaList.value = filteredData;
直接这样来筛选就行了