现在有一批这样的数据
这样的数据 我想根据 hallName 来筛选数据
比如关键字有
我不需要 带有下面字符换的数组数据
const importantData = ref(["VIP", "CINITY", "杜比", "IMAX", "4DX", 'vip', 'Vip'])
使用some 方法
arrangementList.value = arr.filter(item => {
// 使用 some 方法来检查 hallName 是否包含 importantData 中的任何字符串
// 如果包含,则返回 true,否则返回 false
// 然后使用逻辑非 ! 来反转结果,以便只保留不包含这些字符串的项
return !importantData.value.some(keyword => item.hallName.includes(keyword));
});
console.log(arrangementList.value, "arrangementList.value");
使用some 筛选一下 数据
这个数据就可以了