可以使用Array的filter()方法来按多个条件过滤对象数组。以下是一个示例代码:
// 定义对象数组
const products = [
{ name: 'Apple', category: 'fruit', price: 2 },
{ name: 'Banana', category: 'fruit', price: 1 },
{ name: 'Carrot', category: 'vegetable', price: 3 },
{ name: 'Broccoli', category: 'vegetable', price: 2 },
{ name: 'Orange', category: 'fruit', price: 2 }
];
// 定义过滤条件
const filters = {
category: 'fruit',
price: 2
};
// 过滤对象数组
const filteredProducts = products.filter(product => {
for (let key in filters) {
if (product[key] !== filters[key]) {
return false;
}
}
return true;
});
console.log(filteredProducts);
在上面的示例中,我们定义了一个包含多个对象的products数组和一个包含多个过滤条件的filters对象。然后,我们使用filter()方法来过滤对象数组,通过遍历过滤条件对象的属性,并与每个对象进行比较。如果对象的属性与过滤条件不匹配,则返回false,否则返回true。最后,将过滤后的对象数组打印到控制台。
运行上述代码后,输出结果为:
[
{ name: 'Apple', category: 'fruit', price: 2 },
{ name: 'Orange', category: 'fruit', price: 2 }
]
这是因为根据过滤条件,只有名称为“Apple”和“Orange”的水果对象的类别和价格都与过滤条件匹配。
上一篇:按多个条件分组并计数
下一篇:按多个条件和操作进行分组