# prefer-spread
需要扩展运算符而不是 .apply()
在 ES2015 之前,必须使用 Function.prototype.apply()
来调用可变参数函数。
var args = [1, 2, 3, 4];
Math.max.apply(Math, args);
在 ES2015 中,可以使用扩展语法来调用可变参数函数。
/*eslint-env es6*/
var args = [1, 2, 3, 4];
Math.max(...args);
# 规则详情
此规则旨在在可以使用扩展语法的情况下标记 Function.prototype.apply()
的使用。
# 示例
此规则的错误代码示例:
/*eslint prefer-spread: "error"*/
foo.apply(undefined, args);
foo.apply(null, args);
obj.foo.apply(obj, args);
此规则的正确代码示例:
/*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()
调用的通知,您可以放心地禁用此规则。