版本

prefer-spread

要求使用扩展运算符而不是 .apply()

在 ES2015 之前,必须使用 Function.prototype.apply() 来调用可变参数函数。

var args = [1, 2, 3, 4];
Math.max.apply(Math, args);

在 ES2015 中,可以使用扩展语法来调用可变参数函数。

var args = [1, 2, 3, 4];
Math.max(...args);

规则详情

此规则旨在标记在可以使用扩展语法的情况下使用 Function.prototype.apply() 的情况。

示例

此规则的错误代码示例

在 Playground 中打开
/*eslint prefer-spread: "error"*/

foo.apply(undefined, args);
foo.apply(null, args);
obj.foo.apply(obj, args);

此规则的正确代码示例

在 Playground 中打开
/*eslint prefer-spread: "error"*/

// Using spread syntax
foo(...args);
obj.foo(...args);

// The `this` binding is different.
foo.apply(obj, args);
obj.foo.apply(null, args);
obj.foo.apply(otherObj, args);

// The argument list is not variadic.
// Those are warned by the `no-useless-call` rule.
foo.apply(undefined, [1, 2, 3]);
foo.apply(null, [1, 2, 3]);
obj.foo.apply(obj, [1, 2, 3]);

已知限制

此规则静态分析代码以检查 this 参数是否已更改。因此,如果 this 参数在动态表达式中计算,则此规则无法检测到违规行为。

/*eslint prefer-spread: "error"*/

// This warns.
a[i++].foo.apply(a[i++], args);

// This does not warn.
a[++i].foo.apply(a[i], args);

何时不使用它

此规则不应在 ES3/5 环境中使用。

在 ES2015 (ES6) 或更高版本中,如果您不想收到有关 Function.prototype.apply() 调用的通知,可以安全地禁用此规则。

版本

此规则在 ESLint v1.0.0-rc-1 中引入。

资源

更改语言