Lodash _.cond() 方法
Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。
这 _。 cond方法创建一个函数,该函数迭代对并调用第一个谓词的相应函数以返回真值。谓词-函数对使用创建的函数的绑定和参数调用。
句法:
_.cond(pairs)
参数:此方法接受一个如上所述和如下所述的参数:
- pair: [Array]谓词-函数对。
返回值: [Array]谓词-函数对。
注意:这里 const _ = require('lodash') 用于导入文件中的 lodash 库。
示例 1:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// using _.cond() method
var func1 = _.cond([
[_.matches({ 'geeks': 1 }),
_.constant('Matches Geeks')],
[_.conforms({ 'for': _.isNumber }),
_.constant('Matches For')],
[_.stubTrue, _.constant('no match')]
]);
// Storing the Result
gfg = func1({ 'geeks': 1, 'b': 2 });
// Printing the output
console.log(gfg);
Javascript
// Requiring the lodash library
const _ = require("lodash");
// using _.cond() method
var func2 = _.cond([
[_.matches({ 'geeks': 1 }),
_.constant('Matches Geeks')],
[_.conforms({ 'for': _.isNumber }),
_.constant('Matches For')],
[_.stubTrue, _.constant('No Match')]
]);
// Storing Result
gfg1 = func2({ 'geeks': 0, 'for': 1 });
gfg2 = func2({ 'geeks': '1', 'for': '2' });
// Printing the output
console.log(gfg1);
console.log(gfg2)
输出:
"Matches Geeks"
示例 2:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// using _.cond() method
var func2 = _.cond([
[_.matches({ 'geeks': 1 }),
_.constant('Matches Geeks')],
[_.conforms({ 'for': _.isNumber }),
_.constant('Matches For')],
[_.stubTrue, _.constant('No Match')]
]);
// Storing Result
gfg1 = func2({ 'geeks': 0, 'for': 1 });
gfg2 = func2({ 'geeks': '1', 'for': '2' });
// Printing the output
console.log(gfg1);
console.log(gfg2)
输出:
"Matches For"
"No Match"