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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。