Lodash _.every() 方法
Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、集合、字符串、对象、数字等。 _.every 方法检查谓词是否为集合的所有元素返回 true,一旦谓词返回错误,迭代就会停止。
注意:对于空集合,此方法也返回 true,因为对于空集合的元素来说,一切都是 true。
句法:
_.every(collection, [predicate=_.identity])
参数:此方法接受上面提到的两个参数,如下所述:
- 集合(数组|对象):此参数保存要迭代的集合。
- [predicate=_.identity] (函数):此参数保存每次迭代调用的函数。
返回值:如果所有元素都通过谓词检查,则此方法用于返回true,否则返回false。
示例一:这里使用 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);
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);
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);
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
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。