在 JavaScript 中过滤数组多个值

filter()方法使用已通过测试功能的那些元素创建一个全新的数组。

目录

1.使用filter( ) JavaScript中通过检查多个值来过滤数组的方法

2.使用filter() JavaScript中通过检查多个值来过滤对象数组的方法

3.在JavaScript中使用该filter()方法动态过滤对象数组


1.使用filter( ) JavaScript中通过检查多个值来过滤数组的方法

例如,我们将检索姓氏开头的学生的记录,M并至少注册了 3 门课程。

filter()函数不会修改/更新原始数组并针对空元素运行。

var array = [1, 3, 4, 2, 6, 7, 5, 9, 10, 8];
var result = array.filter(array => array < 10 && array >=2);
console.log(result);

输出:

[3, 4, 2, 6, 7, 5, 9, 8]

在这里,我们在方法内部使用箭头函数filter()

请记住,我们还可以传递函数名称并单独编写该函数。对数组中的每个元素执行此数组函数,并检查是否满足指定的条件。

然后该元素将保存在result数组中,否则,移动到数组的下一个元素。

2.使用filter() JavaScript中通过检查多个值来过滤对象数组的方法

在这里,我们有一个cities包含 4 个对象的数组。

每个对象有两个属性,city_namecity_population

let cities = [
    {city_name: 'Los Angeles', city_population: 3992631},
    {city_name: 'New York', city_population: 8185433},
    {city_name: 'Chicago', city_population: 2655568},
    {city_name: 'China', city_population: 2039471},
];
let bigCitiesAndPopulation = cities.filter(function (e) {
    return e.city_population > 2000000 && e.city_name.startsWith("Chi");
});
console.log(bigCitiesAndPopulation);

 输出:

[{
  city_name: "Chicago",
  city_population: 2655568
}, {
  city_name: "China",
  city_population: 2039471
}]

filter()方法返回了数组,因为我们将它与数组一起使用。现在,我们将它与对象数组一起使用,并且该filter()函数返回一个对象数组。

或者,我们可以使用该filter()方法来获得确切的结果。

let bigCitiesAndPopulation = cities.filter(city => 
                                           city.city_population > 2000000 &&
                                           city.city_name.startsWith("Chi"));
console.log(bigCitiesAndPopulation);

 输出:

[{
  city_name: "Chicago",
  city_population: 2655568
}, {
  city_name: "China",
  city_population: 2039471
}]

过滤器方法的实现不使用内置方法。 

let bigCitiesAndPopulation = [];

for (let i = 0; i < cities.length; i++) {
    if (cities[i].city_population > 2000000 && cities[i].city_name.startsWith("Chi")) {
        bigCitiesAndPopulation.push(cities[i]);
    }
}
console.log(bigCitiesAndPopulation);

 输出:

[{
  city_name: "Chicago",
  city_population: 2655568
}, {
  city_name: "China",
  city_population: 2039471
}]

我们使用一个for循环,直到cities.length-1. 在 内部for-loop,我们检查 是否city_population大于2000000city_name以 开头Chi。 

如果这两个条件都满足,那么只有这个城市才会被推入阵列bigCitiesAndPopulation中。

在上面的示例中,我们应该只使用两个值来过滤对象数组。

假设我们有许多值将被检查以过滤对象数组。在这种情况下,我们必须将这些值保存在单独的数组中。

例如,我们有 4 个值BiologyPhysicsChemistryArtsin filtersArray。我们的目标是获取那些具有filtersArray.

var studentCourses =   [
    { id: 210, courses: "Biology Physics Math"},
    { id: 211, courses: "History Physics ComputerScience"},
    { id: 212, courses: "Arts Language Biology Chemistry Physics"},
    { id: 213, courses: "Chemistry Statistics Math"},
    { id: 214, courses: "Biology Chemistry Physics Arts"},
];

var	filtersArray = ["Biology", "Physics", "Chemistry", "Arts"];

var filteredArray = studentCourses.filter(function(element) {
   var courses = element.courses.split(' ');
   return courses.filter(function(course) {
       return filtersArray.indexOf(course) > -1;
    }).length === filtersArray.length;
});

console.log(filteredArray);

输出: 

[{
  courses: "Arts Language Biology Chemistry Physics",
  id: 212
}, {
  courses: "Biology Chemistry Physics Arts",
  id: 214
}]

我们得到那些包含所有filtersArray元素的对象。请记住,对象可以有额外的课程,但它们必须包含元素filterArray才能被过滤。 

3.在JavaScript中使用该filter()方法动态过滤对象数组

动态意味着一切都将在运行时决定。

"use strict";
Array.prototype.flexFilter = function(criteria) {
  //set variables
  var matchFilters, matches = [], counter;

  //helper function to iterate over the criteria (filter criteria)
  matchFilters = function(item) {
    counter = 0
    for (var n = 0; n < criteria.length; n++) {
      if (criteria[n]["Values"].indexOf(item[criteria[n]["Field"]]) > -1) {
        counter++;
      }
    }
    // The array's current items satisfies all the filter criteria, if it is true
    return counter == criteria.length;
  }

    //loop through every item of the array
    //and checks if the item satisfies the filter criteria
  for (var i = 0; i < this.length; i++) {
    if (matchFilters(this[i])) {
       matches.push(this[i]);
    }
  }
  // returns a new array holding the objects that fulfill the filter criteria
  return matches;
}

var personData = [
  { id: 1, name: "John", month: "January", gender: "M" },
  { id: 2, name: "Thomas", month: "March", gender: "M" },
  { id: 3, name: "Saira", month: "April", gender: "F" },
  { id: 4, name: "Daniel", month: "November", gender: "M" },
  { id: 5, name: "Leonardo", month: "March", gender: "M" },
  { id: 6, name: "Jamaima", month: "April", gender: "F" },
  { id: 7, name: "Tina", month: "December", gender: "F" },
  { id: 8, name: "Mehvish", month: "March", gender: "F" }
];

var filter_criteria = [
  { Field: "month", Values: ["March"] },
  { Field: "gender", Values: ["F", "M"] }
];
var filtered = personData.flexFilter(filter_criteria);
console.log(filtered);

我们使用一个函数来迭代filter_criteria以检索匹配的值。

每个过滤条件都将被视为在一个过滤字段中AND采用多个过滤值OR

输出:

[{
  gender: "M",
  id: 2,
  month: "March",
  name: "Thomas"
}, {
  gender: "M",
  id: 5,
  month: "March",
  name: "Leonardo"
}, {
  gender: "F",
  id: 8,
  month: "March",
  name: "Mehvish"
}]

在检查 之后filter_criteria,我们遍历每个数组元素并评估它是否满足过滤条件。

我们push放入matches满足过滤条件的数组。否则不行。

循环结束后,我们打印满足filter_criteria.

  • 2
    点赞
  • 10
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值