当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Lodash _.filter()用法及代码示例


Lodash是一个JavaScript库,可在underscore.js顶部使用。 Lodash帮助处理数组,集合,字符串,对象,数字等。

_.filter()方法遍历collection的元素,返回所有谓词元素数组,返回true。

注意:此方法与_.remove()方法不同,因为此方法返回一个新数组。

用法:

_.filter( collection, predicate )

参数:该方法接受上述和以下所述的两个参数:



  • collection:此参数保留要迭代的集合。
  • predicate:此参数保存每次迭代调用的函数。

返回值:此方法返回新的过滤数组。

范例1:

// Requiring the lodash library  
const _ = require("lodash");  
      
// Original array  
var users = [ 
  { 'user':'luv', 
    'salary':36000, 
    'active':true }, 
  { 'user':'kush',  
    'salary':40000, 
    'active':false } 
]; 
  
// Using the _.filter() method 
let filtered_array = _.filter( 
    users, function(o) { 
       return !o.active; 
    } 
); 
  
// Printing the output  
console.log(filtered_array);

输出:

[ { user:'kush', salary:40000, active:false } ]

范例2:

// Requiring the lodash library  
const _ = require("lodash");  
      
// Original array  
var users = [ 
  { 'user':'luv', 
    'salary':36000, 
    'active':true }, 
  { 'user':'kush',  
    'salary':40000, 
    'active':false } 
]; 
  
// Using the _.filter() method 
// The `_.matches` iteratee shorthand 
let filtered_array = _.filter(users,  
    { 'salary':36000, 'active':true } 
); 
  
// Printing the output  
console.log(filtered_array);

输出:

[ { user:'luv', salary:36000, active:true } ]

范例3:

// Requiring the lodash library  
const _ = require("lodash");  
      
// Original array  
var users = [ 
  { 'user':'luv', 
    'salary':36000, 
    'active':true }, 
  { 'user':'kush',  
    'salary':40000, 
    'active':false } 
]; 
  
// Using the _.filter() method 
// The `_.matchesProperty` iteratee shorthand 
let filtered_array = 
  _.filter(users, ['active', false]); 
  
// Printing the output  
console.log(filtered_array);

输出:

[ { user:'kush', salary:40000, active:false } ]

范例4:

// Requiring the lodash library  
const _ = require("lodash");  
      
// Original array  
var users = [ 
  { 'user':'luv', 
    'salary':36000, 
    'active':true }, 
  { 'user':'kush',  
    'salary':40000, 
    'active':false } 
]; 
  
// Using the _.filter() method 
// The `_.property` iteratee shorthand 
let filtered_array = 
  _.filter(users, 'active'); 
  
// Printing the output  
console.log(filtered_array);

输出:

[ { user:'luv', salary:36000, active:true } ]




相关用法


注:本文由纯净天空筛选整理自shivanisinghss2110大神的英文原创作品 Lodash _.filter() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。