服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

_.at(object, paths)

创建对应于paths的值的数组object

版本

1.0.0

参数
  1. object (Object):迭代的对象。
  2. [paths] (...(string | string [])):要选择的属性路径。
返回

(数组):返回采集的值。

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