method
_.method(path, [args])
创建一个调用给定对象 path
上的函数。 任何附加的参数都会传入这个调用函数中。
参数
path (Array|string)
调用函数所在对象的路径
[args] (...*)
传递给调用函数的参数
返回值 (Function)
返回新的函数
示例
var objects = [
{ 'a': { 'b': { 'c': _.constant(2) } } },
{ 'a': { 'b': { 'c': _.constant(1) } } }
];
_.map(objects, _.method('a.b.c'));
// => [2, 1]
_.invokeMap(_.sortBy(objects, _.method(['a', 'b', 'c'])), 'a.b.c');
// => [1, 2]