Lodash是一个JavaScript库,可在underscore.js顶部使用。 Lodash帮助处理数组,字符串,对象,数字等。
Util的_.conforms()方法用于创建一个函数,该函数使用指定对象的相似属性值调用源的谓词属性,如果所有谓词为true,则返回true,否则返回false。
用法:
_.conforms(source)
参数:此方法接受单个参数,如下所述:
-
source(对象):符合条件的属性谓词的对象。
返回值:此方法返回新的指定函数。
范例1:
// Requiring the lodash library
const _ = require('lodash');
// Initializing an object
var object = [
{ 'x':2, 'y':3 },
{ 'x':5, 'y':6 }
];
// Calling _.conforms() function with its parameter
let newfunc = _.filter(object, _.conforms({ 'y':function(n) {
return n > 3; } }));
// Displays output
console.log(newfunc);
输出:
[ { x:5, y:6 } ]
范例2:
// Requiring the lodash library
const _ = require('lodash');
// Initializing an object
var object = [
{ 'GfG':13, 'geeksforgeeks':5 },
{ 'GfG':7, 'geeksforgeeks':4 }
];
// Calling _.conforms() function with its parameter
let newfunc = _.filter(object, _.conforms({ 'GfG':function(n) {
return n > 13; } }));
// Displays output
console.log(newfunc);
输出:
[]
在此,由于不满足所述条件,因此不返回任何内容。
参考:https://lodash.com/docs/4.17.15#conforms
相关用法
- Lodash _.method()用法及代码示例
- Lodash _.uniqWith()用法及代码示例
- Lodash _.xorWith()用法及代码示例
- Lodash _.head()用法及代码示例
- Lodash _.remove()用法及代码示例
- Lodash _.pullAt()用法及代码示例
- Lodash _.pullAll()用法及代码示例
- Lodash _.pull()用法及代码示例
- Lodash _.nth()用法及代码示例
- Lodash _.takeRight()用法及代码示例
- Lodash _.take()用法及代码示例
- Lodash _.sortedLastIndex()用法及代码示例
- Lodash _.fromPairs()用法及代码示例
- Lodash _.differenceWith()用法及代码示例
- Lodash _.castArray()用法及代码示例
- Lodash _.cloneDeep()用法及代码示例
- Lodash _.clone()用法及代码示例
- Lodash _.sampleSize()用法及代码示例
- Lodash _.find()用法及代码示例
- Lodash _.zipWith()用法及代码示例
注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Lodash _.conforms() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。