服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

_.sumBy(array, iteratee=_.identity)

此方法与_.sum相似,不同之处在于它接受为数组中的每个元素调用的iteratee以生成要进行求和的值。 迭代器被调用一个参数:(value)。

初始

4.0.0

参数
  1. array (Array):迭代的数组。
  2. [iteratee=_.identity] (Function):每个元素调用的迭代器。
返回

(数字):返回总和。

var objects = [{ 'n': 4 }, { 'n': 2 }, { 'n': 8 }, { 'n': 6 }];
 
_.sumBy(objects, function(o) { return o.n; });
// => 20
 
// The `_.property` iteratee shorthand.
_.sumBy(objects, 'n');
// => 20