Lodash - methodOf 方法
语法
_.methodOf(object, [args])
_.method 的相反方法;此方法创建一个函数,在对象的指定路径处调用该方法。任何其他参数都会提供给被调用的方法。
参数
object (对象) - 要查询的对象。
[args] (...*) - 调用方法使用的参数。
输出
(Function) - 返回新的调用者函数。
示例
var _ = require('lodash'); var array = _.times(3, _.constant); var object = { 'a': array, 'b': array, 'c': array }; console.log(_.map(['a[2]', 'c[0]'], _.methodOf(object))); console.log(_.map([['a', '2'], ['c', '0']], _.methodOf(object)));
将上述程序保存在 tester.js 中。运行以下命令以执行此程序。
命令
\>node tester.js
输出
[ 2, 0 ] [ 2, 0 ]
lodash_util.htm
广告