當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。