_.zipObjectDeep()方法与_.zipObject()方法相似,除了它支持属性路径,而且它接受两个数组,一个是属性标识符,另一个是对应值。
用法:
_.zipObjectDeep([props=[]], [values=[]])
参数:该方法接受上述和以下所述的两个参数:
- [props = []](数组):此参数保存属性标识符。
- [values = []](数组):此参数保存属性值。
返回值:此方法返回新对象。
范例1:在这里,const _ = require(‘lodash’)用于将lodash库导入文件中。
javascript
// Requiring the lodash library
const _ = require("lodash");
// Original array
var obj1 = ['a.b[0].c', 'a.b[1].d'];
// Use of _.zipObjectDeep() method
let gfg = _.zipObjectDeep(obj1, [1, 2]);
// Printing the output
console.log(gfg);
输出:
{ a:{ b:[ [ object ], [object] ] } }
范例2:
javascript
// Requiring the lodash library
const _ = require("lodash");
// Original array
var obj1 = ([ 40, 30, 90 ]);
// Use of _.zipObjectDeep() method
let gfg = _.zipObjectDeep(obj1, [ 1, 2, 3 ]);
// Printing the output
console.log(gfg);
输出:
{ '30':2, '40':1, '90':3 }
范例3:
javascript
// Requiring the lodash library
const _ = require("lodash");
// Original array
var obj1 = (['a', 'g', 'h',
'b', 'c', 'd', 'e', 'f']);
// Use of _.zipObjectDeep()
// method
let gfg = _.zipObjectDeep(obj1,
[1, 2, 3, 4, 5, 6, 7]);
// Printing the output
console.log(gfg);
输出:
{ a:1, g:2, h:3, b:4, c:5, d:6, e:7, f:undefined }
注意:该代码在常规JavaScript中不起作用,因为它需要安装库lodash。
相关用法
- Lodash _.take()用法及代码示例
- Lodash _.max()用法及代码示例
- Lodash _.last()用法及代码示例
- Lodash _.nth()用法及代码示例
- Lodash _.zip()用法及代码示例
- Lodash _.add()用法及代码示例
- Lodash _.xor()用法及代码示例
- Lodash _.every()用法及代码示例
- Lodash _.min()用法及代码示例
- Lodash _.groupBy()用法及代码示例
- Lodash _.pullAllWith()用法及代码示例
- Lodash _.countBy()用法及代码示例
- Lodash _.maxBy()用法及代码示例
- Lodash _.isEqual()用法及代码示例
- Lodash _.minBy()用法及代码示例
- Lodash _.meanBy()用法及代码示例
- Lodash _.sortedIndex()用法及代码示例
- Lodash _.isEmpty()用法及代码示例
- Lodash _.isBuffer()用法及代码示例
- Lodash _.xorBy()用法及代码示例
注:本文由纯净天空筛选整理自shivanisinghss2110大神的英文原创作品 Lodash _.zipObjectDeep() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。