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。
相關用法
- Lodash _.take()用法及代碼示例
- Lodash _.xor()用法及代碼示例
- Lodash _.add()用法及代碼示例
- Lodash _.min()用法及代碼示例
- Lodash _.max()用法及代碼示例
- Lodash _.nth()用法及代碼示例
- Lodash _.last()用法及代碼示例
- Lodash _.zip()用法及代碼示例
- Lodash _.minBy()用法及代碼示例
- Lodash _.maxBy()用法及代碼示例
- Lodash _.meanBy()用法及代碼示例
- Lodash _.fromPairs()用法及代碼示例
- Lodash _.sortedLastIndex()用法及代碼示例
- Lodash _.isArray()用法及代碼示例
- Lodash _.pullAll()用法及代碼示例
- Lodash _.takeRight()用法及代碼示例
- Lodash _.xorWith()用法及代碼示例
- Lodash _.isBoolean()用法及代碼示例
- Lodash _.xorBy()用法及代碼示例
- Lodash _.pull()用法及代碼示例
注:本文由純淨天空篩選整理自shivanisinghss2110大神的英文原創作品 Lodash _.every() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。