我正在玩数组试图更多地理解它们,因为我最近倾向于使用它们。 我得到了这种情况,我想搜索一个数组并将它的元素值与另一个包含某些选定过滤器值的数组进行比较。
例如,如果我选择3个过滤器,我希望稍后在新数组中写入匹配 - 只匹配所有3个过滤器。
为了便于理解,我在http://jsfiddle.net/easwee/x8U4v/36/
上设置了一个示例代码是:
var workItems = [
{ "id": 2616, "category": ".category-copy .category-beauty .category-fashion"}, //this is a match
{ "id": 1505, "category": ".category-beauty"}, // NOT
{ "id": 1500, "category": ".category-beauty .category-fashion"}, // NOT
{ "id": 692, "category": ".category-stills .category-retouching"}, // NOT
{ "id": 593, "category": ".category-beauty .category-capture .category-fashion .category-product .category-stills .category-stills-retouching "}, // NOT
{ "id": 636, "category": ".category-beauty .category-copy .category-fashion"}, //this is a match
{ "id": 547, "category": ".category-fashion .category-lifestyle .category-stills .category-stills-retouching "}, // NOT
{ "id": 588, "category": ".category-capture .category-recent-work .category-copy .category-beauty .category-fashion"} //this is a match
];
var filtersArray = [".category-beauty", ".category-fashion", ".category-copy"];
var i;
for (i = 0; i < filtersArray.length; ++i) {
var searchString = filtersArray[i];
console.log('Searching for: ' + searchString);
var filtered = $(workItems).filter(function(){
return this.category.indexOf(searchString);
});
}
console.log('Filtered results: ' + JSON.stringify(filtered, null, 4));
我也试过
filtered = $.grep(workItems, function(element, index){
return element.category.indexOf(filtersArray[i]);
}, true);
但它只与第一个过滤器匹配,并且仅在workItems.category
我尝试了很多不同的解决方案但却无法真正做到这一点。我应该使用什么函数来返回所需的结果?
答案 0 :(得分:19)
您可以使用.filter()
对象的Array
方法:
var filtered = workItems.filter(function(element) {
// Create an array using `.split()` method
var cats = element.category.split(' ');
// Filter the returned array based on specified filters
// If the length of the returned filtered array is equal to
// length of the filters array the element should be returned
return cats.filter(function(cat) {
return filtersArray.indexOf(cat) > -1;
}).length === filtersArray.length;
});
某些旧版浏览器(如IE8)不支持.filter()
对象的Array
方法,如果您使用的是jQuery,则可以使用jQuery对象的.filter()
方法。
jQuery版本:
var filtered = $(workItems).filter(function(i, element) {
var cats = element.category.split(' ');
return $(cats).filter(function(_, cat) {
return $.inArray(cat, filtersArray) > -1;
}).length === filtersArray.length;
});
答案 1 :(得分:5)
您可以将.filter()与布尔运算符(即&& :)一起使用
var find = my_array.filter(function(result) {
return result.param1 === "srting1" && result.param2 === 'string2';
});
return find[0];
}
答案 2 :(得分:3)
答案 3 :(得分:0)
如果有人想根据对象的多个属性应用过滤器,这个技巧会有所帮助。
searchCustomers(){
let tempCustomers = this.customers
if (this.searchValue != '' && this.searchValue) {
tempCustomers = tempCustomers.filter((item) => {
return item.name
.toUpperCase()
.includes(this.searchValue.toUpperCase()) || item.customer_no
.toUpperCase()
.includes(this.searchValue.toUpperCase()) || item.mobno
.toUpperCase()
.includes(this.searchValue.toUpperCase())
})
}
return tempCustomers;
}