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


Lodash _.every()用法及代碼示例


Lodash是一個JavaScript庫,可在underscore.js頂部使用。 Lodash幫助處理數組,集合,字符串,對象,數字等。_.every方法檢查謂詞對於collection的所有元素是否返回true,一旦謂詞返回錯誤,則停止迭代。

注意:同樣,此方法對於空集合也返回true,因為對於空集合的元素而言,一切都正確。

用法:

_.every(collection, [predicate=_.identity])

參數:該方法接受上述和以下所述的兩個參數:

  • 集合(數組|對象):此參數保留要迭代的集合。
  • [predicate = _。identity](函數):此參數保存每次迭代調用的函數。

返回值:如果所有元素均通過謂詞檢查,則此方法用於返回true,否則返回false。



範例1:在這裏,const _ = require(‘lodash’)用於將lodash庫導入文件中。

javascript

// Requiring the lodash library  
const _ = require("lodash");  
      
// Original array  
  
var obj1 = ([true, 1, null, 'yes']); 
var obj2 = ([true, 2, 'active', 'yes']); 
  
// Use of _.every() method 
   
let x = _.every(obj1, Boolean);     
let y = _.every(obj2, Boolean); 
  
// Printing the output  
console.log(x); 
console.log(y);

輸出:

false
true

範例2:

javascript

// Requiring the lodash library  
const _ = require("lodash");  
      
// Original array  
  
var users = [ { 'user':'jonny', 'age':30, 'active':false },  
              { 'user':'harry', 'age':35, 'active':false } ]; 
  
// Use of _.every() method 
// The `_.matches` iteratee shorthand. 
   
let x = _.every(users, { 'user':'barney', 'active':false }); 
  
// Printing the output  
console.log(x);

輸出:

false

範例3:

javascript

// Requiring the lodash library  
const _ = require("lodash");  
      
// Original array  
  
var users = [ 
  { 'user':'jonny', 'age':30, 'active':false }, 
  { 'user':'harry',  'age':35, 'active':false } 
]; 
  
// Use of _.every() method 
// The `_.matchesProperty` iteratee shorthand. 
  
let x = _.every(users, ['active', false]); 
  
// Printing the output  
console.log(x);

輸出:

true

範例4:

javascript

// Requiring the lodash library  
const _ = require("lodash");  
      
// Original array  
  
var users = [ 
  { 'user':'jonny', 'age':30, 'active':false }, 
  { 'user':'harry',  'age':35, 'active':false } 
]; 
  
// Use of _.every() method 
// The `_.property` iteratee shorthand. 
  
let x = _.every(users, 'active'); 
  
// Printing the output  
console.log(x);

輸出:

false

注意:該代碼在常規JavaScript中不起作用,因為它需要安裝庫lodash。




相關用法


注:本文由純淨天空篩選整理自shivanisinghss2110大神的英文原創作品 Lodash _.every() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。