當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Lodash _.groupBy()用法及代碼示例


Lodash是一個JavaScript庫,可在underscore.js頂部使用。 Lodash幫助處理數組,集合,字符串,對象,數字等。

_.groupBy()方法創建一個對象,該對象由通過iteratee函數運行collection的每個元素的結果生成的鍵組成。分組值的順序由它們在集合中出現的順序決定。每個 key 的對應值也是負責生成 key 的元素數組。

用法:

_.groupBy( collection, iteratee )

參數:該方法接受上述和以下所述的兩個參數:

  • collection:方法是對其進行迭代的集合。
  • iteratee:它是為數組中的每個元素調用的函數。

返回值:此方法返回組成的聚合對象。



範例1:

// Requiring the lodash library  
const _ = require("lodash");  
       
// Original array  
var users = ([6.5, 4.12, 6.8, 5.4]); 
  
// Using the _.groupBy() method 
let grouped_data = _.groupBy(users, Math.floor ) 
  
console.log(grouped_data);

輸出:

{ '4':[ 4.12 ], '5':[ 5.4 ], '6':[ 6.5, 6.8 ] }

範例2:

// Requiring the lodash library  
const _ = require("lodash");  
       
// Original array  
var users = (['eight', 'nine', 'four', 'seven']); 
   
// Using of _.groupBy() method 
// with the `_.property` iteratee shorthand  
let grouped_data = _.groupBy(users, 'length') 
  
console.log(grouped_data);

輸出:

{ '4':[ 'nine', 'four' ], '5':[ 'eight', 'seven' ]}

範例3:

// Requiring the lodash library  
const _ = require("lodash");  
       
// Original array  
var users = (['one', 'two', 'three', 'four']); 
var obj = ([ 3.1, 1.2, 3.3 ]); 
   
// Using the _.groupBy() method 
// with the `_.property` iteratee shorthand  
let grouped_data = _.groupBy(users, 'length') 
let grouped_data2 = _.groupBy(obj, Math.floor) 
  
// Printing the output  
console.log(grouped_data, grouped_data2);

輸出:

{ '3':[ 'one', 'two' ], '4':[ 'four' ], '5':[ 'three' ] } 
{ '1':[ 1.2 ], '3':[ 3.1, 3.3 ] }




相關用法


注:本文由純淨天空篩選整理自shivanisinghss2110大神的英文原創作品 Lodash _.groupBy() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。