Lodash _.at() 方法
Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、集合、字符串、语言、函数、对象、数字等。
_.at() 方法创建一个对应于对象路径的值数组。
句法:
_.at(object, [paths])
参数:此方法接受上面提到的两个参数,如下所述:
- object:它保存要迭代的对象。
- [paths]:它保存要选择的属性路径。
返回值:此方法返回选取的值。
示例一:这里使用 const _ = require('lodash') 来导入文件中的 lodash 库。
// Requiring the lodash library
const _ = require("lodash");
// Original array
var object = { 'p': [{ 'q': { 'r': 7 } }, 9] };
// Using the _.at() method
let at_elem = _.at(object, ['p[0].q.r', 'p[1]']);
// Printing the output
console.log(at_elem);
输出:
[ 7, 9 ]
示例 2:
// Requiring the lodash library
const _ = require("lodash");
// Original array
var object = { 'oppo': [{ 'vivo': { 'moto': 1900 } }, 2400]
};
// Using the _._.at() method
let at_elem = _.at(object, ['oppo[0].vivo.moto', 'oppo[1]']);
// Printing the output
console.log(at_elem);
输出:
[ 1900, 2400 ]
注意:此代码在普通 JavaScript 中不起作用,因为它需要安装库 lodash。