Lodash _.keyBy() 方法
Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、集合、字符串、对象、数字等。
_.keyBy()方法创建一个对象,该对象由通过 iteratee 运行集合的每个元素的结果生成的键组成。每个键对应的值是负责生成键的最后一个元素。
句法:
_.keyBy( collection, iteratee )
参数:此方法接受上面提到的两个参数,如下所述:
- 集合:此参数保存要迭代的集合。
- iteratee:此参数保存要转换键的迭代对象。
返回值:此方法返回组合的聚合对象。
示例 1:
// Requiring the lodash library
const _ = require("lodash");
// Original array
var array = [
{ 'dir': 'left', 'code': 89 },
{ 'dir': 'right', 'code': 71 }
];
// Use of _.keyBy() method
let keyby_array = _.keyBy(array, 'dir');
// Printing the output
console.log(keyby_array);
输出:
{ 'left': { 'dir': 'left', 'code': 89 },
'right': { 'dir': 'right', 'code': 71 } }
示例 2:
// Requiring the lodash library
const _ = require("lodash");
// Original array
var array = [
{ 'dir': 'left', 'code': 89 },
{ 'dir': 'right', 'code': 71 }
];
// Use of _.keyBy() method
let keyby_array = _.keyBy(array, function(o) {
return String.fromCharCode(o.code);
});
// Printing the output
console.log(keyby_array);
输出:
{ 'Y': { 'dir': 'left', 'code': 89 },
'G': { 'dir': 'right', 'code': 71 } }