服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

_.spread(func, start=0)

创建一个调用create function和一个参数数组functhis绑定的函数Function#apply

注意: 此方法基于扩展运算符

初始

3.2.0

参数
  1. func (功能):将参数传播的功能。
  2. [start=0] (数字):价差的起始位置。
返回

(功能):返回新功能。

var say = _.spread(function(who, what) {
  return who + ' says ' + what;
});
 

say(['fred', 'hello']);
// => 'fred says hello'
 

var numbers = Promise.all([
  Promise.resolve(40),

  Promise.resolve(36)
]);
 
numbers.then(_.spread(function(x, y) {
  return x + y;
}));
// => a Promise of 76