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 ] }
相關用法
- Lodash _.add()用法及代碼示例
- Lodash _.nth()用法及代碼示例
- Lodash _.zip()用法及代碼示例
- Lodash _.min()用法及代碼示例
- Lodash _.every()用法及代碼示例
- Lodash _.xor()用法及代碼示例
- Lodash _.max()用法及代碼示例
- Lodash _.last()用法及代碼示例
- Lodash _.take()用法及代碼示例
- Lodash _.maxBy()用法及代碼示例
- Lodash _.sampleSize()用法及代碼示例
- Lodash _.cloneDeep()用法及代碼示例
- Lodash _.sortedLastIndexBy()用法及代碼示例
- Lodash _.sortedIndexBy()用法及代碼示例
- Lodash _.meanBy()用法及代碼示例
- Lodash _.minBy()用法及代碼示例
- Lodash _.flatten()用法及代碼示例
- Lodash _.isSymbol()用法及代碼示例
- Lodash _.find()用法及代碼示例
- Lodash _.findLast()用法及代碼示例
注:本文由純淨天空篩選整理自shivanisinghss2110大神的英文原創作品 Lodash _.groupBy() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。