当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Lodash _.keyBy()用法及代码示例


Lodash是一个JavaScript库,可在underscore.js顶部使用。 Lodash帮助处理数组,集合,字符串,对象,数字等。

_.keyBy()方法创建一个对象,该对象由通过iteratee运行collection的每个元素的结果生成的键组成。每个 key 的对应值是负责生成 key 的最后一个元素。

用法:

_.keyBy( collection, iteratee )

参数:该方法接受上述和以下所述的两个参数:

  • collection:此参数保留要迭代的集合。
  • 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 } }




相关用法


注:本文由纯净天空筛选整理自shivanisinghss2110大神的英文原创作品 Lodash _.keyBy() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。