Lodash - get 方法



语法

_.get(object, path, [defaultValue])

获取 object 的 path 处的值。如果解析的值未定义,则以 defaultValue 代替。

参数

  • object (Object) − 要查询的对象。

  • path (Array|string) − 要获取的属性的 path。

  • [defaultValue] (*) − 为未定义的解析值返回的值。

输出

  • (*) − 返回已解析的值。

示例

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

console.log(result);

result = _.get(object,   ['a', '0', 'b', 'c']);
console.log(result);

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

命令

\>node tester.js

输出

3
3
lodash_object.htm
广告