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


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


Lodash是一个JavaScript库,可在underscore.js顶部使用。 Lodash帮助处理数组,集合,字符串,对象,数字等。
_.reject()方法与_.filter()方法相反,并且此方法返回谓词未返回true的集合中的元素。

用法:

_.reject(collection, predicate)

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

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

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

范例1:在这里,const _ = require(‘lodash’)用于将lodash库导入文件中。



javascript

// Requiring the lodash library  
const _ = require("lodash");  
       
// Original array  
var users = [ 
  { 'user':'Rohit', 'age':25, 'active':false }, 
  { 'user':'Mohit', 'age':26, 'active':true } ]; 
   
// Use of _.reject() method 
   
let gfg = _.reject(users, function(o)  
        { return !o.active; }); 
  
// Printing the output  
console.log(gfg);

输出:

[ { user:'Mohit', age:26, active:true } ]

范例2:

javascript

// Requiring the lodash library  
const _ = require("lodash");  
       
// Original array  
var users = [ 
  { 'employee':'Rohit',  
    'salary':50000,  
    'active':false 
  }, 
  { 'employee':'Mohit',  
    'salary':55000,  
    'active':true 
  }  
]; 
   
// Use of _.reject() method 
// The `_.matches` iteratee shorthand 
let gfg = _.reject(users,  
    { 'salary':55000, 'active':true }); 
  
// Printing the output  
console.log(gfg);

输出:

[ { employee:Rohit, salary:50000, active:false } ]

范例3:

javascript

// Requiring the lodash library  
const _ = require("lodash");  
       
// Original array  
var users = [ 
  { 'employee':'Rohit',  
    'salary':50000,  
    'active':false 
  }, 
  { 'employee':'Mohit',  
    'salary':55000,  
    'active':true 
  }  
]; 
   
// Use of _.reject() method 
// The `_.matchesProperty` iteratee shorthand 
let gfg = _.reject(users, ['active', false]); 
  
// Printing the output  
console.log(gfg);

输出:

[ { employee:Mohit, salary:55000, active:true } ]

范例4:

javascript

// Requiring the lodash library  
const _ = require("lodash");  
       
// Original array  
var users = [ 
  { 'employee':'Rohit',  
    'salary':50000,  
    'active':false 
  }, 
  { 'employee':'Mohit',  
    'salary':55000,  
    'active':true 
  }  
]; 
   
// Use of _.reject() method 
// The `_.property` iteratee shorthand 
let gfg = _.reject(users, 'active'); 
  
// Printing the output  
console.log(gfg);

输出:

[ { employee:Rohit, salary:50000, active:false } ]

注意:该代码在常规JavaScript中不起作用,因为它需要安装库lodash。




相关用法


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