Lodash - cond方法
语法
_.cond(pairs)
创建一个函数,该函数迭代对,并调用第一个谓词的相应函数以返回真值。谓词-函数对使用创建的函数的 this 绑定和参数进行调用。
参数
pairs (数组) − 谓词-函数对。
输出
(函数) − 返回新的复合函数。
示例
var _ = require('lodash'); var check = _.cond([ [_.matches({ 'a': 1 }), _.constant('matches A')], [_.conforms({ 'b': _.isNumber }), _.constant('matches B')], [_.stubTrue, _.constant('no match')] ]); console.log(check({ 'a': 1, 'b': 2 })); console.log(check({ 'a': 0, 'b': 1 })); console.log(check({ 'a': '1', 'b': '2' }));
将上述程序保存在 tester.js 中。运行以下命令以执行此程序。
命令
\>node tester.js
输出
matches A matches B no match
lodash_util.htm
广告