Lodash - at 方法



语法

_.at(object, [paths])

根据对象的路径创建值数组。

参数

  • object (Object) − 要迭代的对象。

  • [paths] (...(string|string[])) − 要选择的属性路径。

输出

  • (Array) − 返回选取的值。

示例

var _ = require('lodash');
var object = { 'a': [{ 'b': { 'c': 3 } }, 4] };

console.log(_.at(object, ['a[0].b.c', 'a[1]']));

将上述程序保存在 tester.js 中。运行以下命令来执行此程序。

命令

\>node tester.js

输出

[ 3, 4 ]
lodash_object.htm
广告