比较两个不同数组的所有对象元素

Compare all object elements of two different arrays

抱歉我一开始的英语不好。 我在过滤 JSON 中发布的产品列表时遇到问题。代码是用react native写的,使用react redux。

每个产品的对象如下所示:

ProductTest {
 "barcode": "barcode",
 "brand": "brand",
 "category": "category",
 "description": "description",
 "details": "details",
 "filters": Object {
   "cienkie": false,
   "farbowane": false,
   "krecone_i_puszczace": false,
   "normalne": false,
   "oslabione": false,
   "przetluszczajace": false,
   "suche_i_zniszczone": false,
   "wszystkie": true,
 },
 "id": "0",
 "image": "image",
 "ingredients": "ingredients",
 "name": "name",
},

“appliedFilters”列表如下所示:

Object {
 "cienkie": false,
 "farbowane": false,
 "krecone_i_puszczace": false,
 "normalne": false,
 "oslabione": false,
 "przetluszczajace": false,
 "suche_i_zniszczone": false,
 "wszystkie": false,
}

我不知道如何将“appliedFilters”列表与每个产品的“过滤器”进行比较,并return从列表中匹配产品。 如果您有任何想法,我将不胜感激。

您可以使用数组过滤器方法:

let keys = Object.keys(appliedFilters); 
let filteredList = productList.filter(product => {
  let matching = true;
  keys.forEach(key => {
   if(product.hasOwnProperty(key)){
     if(!(product.filters[key] === appliedFilters[key])) matching = false;
   }
  }
  if(matching) return product;
})

如果你确定过滤器和产品对象的属性顺序不会改变,你可以这样简化:

let filteredList = productList.filter(product => JSON.stringify(product.filters) === JSON.stringify(appliedFilters))