Lodash

是一个一致性、模块化、高性能的 JavaScript 实用工具库。

“Util” Methods

_.method(path, [args])

创建一个调用给定对象 path 上的函数。 任何附加的参数都会传入这个调用函数中。

添加版本

3.7.0

参数

  1. path (Array|string): 调用函数所在对象的路径。
  2. [args] (...*): 传递给调用函数的参数。

返回

(Function): 返回新的调用函数。

例子

var objects = [
  { 'a': { 'b': _.constant(2) } },
  { 'a': { 'b': _.constant(1) } }
];
 
_.map(objects, _.method('a.b'));
// => [2, 1]
 
_.map(objects, _.method(['a', 'b']));
// => [2, 1]

数组 Array

集合 Collection

日期 Date

函数 Function

Lang

数学 Math

数字 Number

对象 Object

Seq

字符串 String

实用函数 Util

Properties

Methods