Lodash - result 方法



语法

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

此方法类似于 _get,但如果解析后的值为函数,则使用其父对象的 this 绑定调用它,并返回其结果。

参数

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

  • path (数组 | 字符串) − 要解析的属性的路径。

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

输出

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

示例

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

console.log(result);

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

命令

\>node tester.js

输出

3
lodash_object.htm
广告