服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

_.invoke(object, path, args)

调用pathof 处的方法object

版本

4.0.0

参数
  1. object (Object):要查询的对象。
  2. path (Array | string):要调用的方法的路径。
  3. [args] (... *):用来调用方法的参数。
返回

(*): Returns the result of the invoked method.

var object = { 'a': [{ 'b': { 'c': [1, 2, 3, 4] } }] };
 
_.invoke(object, 'a[0].b.c.slice', 1, 3);
// => [2, 3]