Lodash - groupBy 方法



语法

_.groupBy(collection, [iteratee=_.identity])

创建一个对象,组成它的键是通过对 `collection` 的每个元素运行 `iteratee` 生成的结果。分组值的顺序由它们在 `collection` 中出现的顺序决定。每个键的对应值是一个负责生成键的元素数组。调用 iteratee 时带有一个参数:(value)。

参数

  • collection (Array|Object) - 要迭代的集合。

  • [iteratee=_.identity] (Function) - 用于转换键的 iteratee。

输出

  • (Object) - 返回组合后的聚合对象。

示例

var _ = require('lodash');
var list = [1.1 ,1.4, 2.1, 2.3];
 
var result = _.groupBy(list, Math.floor);
console.log(result);

result = _.groupBy(['one', 'two', 'three'], 'length');
console.log(result);

将上述程序保存在 tester.js 中。运行以下命令来执行该程序。

命令

\>node tester.js

输出

{ '1': [ 1.1, 1.4 ], '2': [ 2.1, 2.3 ] }
{ '3': [ 'one', 'two' ], '5': [ 'three' ] }
lodash_collection.htm
广告