📜  Collect.js where()函数

📅  最后修改于: 2022-05-13 01:56:22.542000             🧑  作者: Mango

Collect.js where()函数

where()函数用于通过给定数组中包含的给定键或值过滤集合。在 JavaScript 中,首先将数组转换为集合,然后将函数应用于集合。

句法:

data.where('key')

参数:此函数接受如上所述和如下所述的单个参数:

  • Key:此参数保存定义该键值的键名。

返回值:返回带有提到的键值的集合。

下面的示例说明了 collect.js 中的 where()函数:

示例 1:在此示例中,我们获取一个集合,然后使用 where() 方法,我们使用键返回过滤后的集合。

Javascript
// It is used to import collect.js library
 
const collection = collect([
  { Book: 'Let US C', price: 2000 },
  { Book: 'Begin Python', price: 1000 },
  { Book: 'Learn the DEV', price: 1500 },
]);
 
const filtered = collection.where('price', [1000, 1500]);
filtered.all();


Javascript
// It is used to import collect.js library
const collect = require('collect.js');
 
const Input = collect([
  new Year('1980'),
  new Year('2020'),
  new Year('2025'),
]);
 
const output = Input.where('Year',[2000, 2025]);
 
console.log(output.all());


输出:

[
 { Book: 'Begin Python', price: 1000 },
 { Book: 'Learn the DEV', price: 1500 }
]

示例 2:

Javascript

// It is used to import collect.js library
const collect = require('collect.js');
 
const Input = collect([
  new Year('1980'),
  new Year('2020'),
  new Year('2025'),
]);
 
const output = Input.where('Year',[2000, 2025]);
 
console.log(output.all());

输出:

[
 new Year('2025')
]

参考: https://collect.js.org/api/where.html