Lodash _.get() 方法
_.get()方法用于获取对象路径的值。如果解析的值未定义,则在其位置返回 defaultValue。
句法:
_.get(object, path, [defaultValue])
参数:此方法接受三个参数,如上所述,如下所述:
- object:此参数保存要查询的对象。
- path:此参数保存要获取的属性的路径。路径将是数组或字符串。
- defaultValue:此参数保存为未定义的解析值返回的值。
返回值:该方法返回解析后的值。
示例 1:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Given object
var object = { 'c': [{ 'python': { 'java': 3 } }] };
// Use of _.get method
console.log(_.get(object, 'c[0].python.java'));
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Given object
var object = { 'c': [{ 'python': { 'java': 3 } }] };
// Use of _.get method
console.log(_.get(object, ['c', '0', 'python', 'java']));
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Given object
var object = { 'c': [{ 'python': { 'java': 3 } }] };
// Use of _.get method
console.log(_.get(object, 'c.python.java', 'default'));
输出:
3
示例 2:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Given object
var object = { 'c': [{ 'python': { 'java': 3 } }] };
// Use of _.get method
console.log(_.get(object, ['c', '0', 'python', 'java']));
输出:
3
示例 3:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Given object
var object = { 'c': [{ 'python': { 'java': 3 } }] };
// Use of _.get method
console.log(_.get(object, 'c.python.java', 'default'));
输出:
'default'