提问人:Felix Kling 提问时间:12/19/2015 最后编辑:jarmodFelix Kling 更新时间:8/25/2023 访问量:242100
“箭头函数”和“函数”是否等同/可互换?
Are 'Arrow Functions' and 'Functions' equivalent / interchangeable?
问:
ES2015 中的箭头函数提供了更简洁的语法。
- 我现在可以用箭头函数替换所有函数声明/表达式吗?
- 我需要注意什么?
例子:
构造函数
function User(name) {
this.name = name;
}
// vs
const User = name => {
this.name = name;
};
原型方法
User.prototype.getName = function() {
return this.name;
};
// vs
User.prototype.getName = () => this.name;
对象(文本)方法
const obj = {
getName: function() {
// ...
}
};
// vs
const obj = {
getName: () => {
// ...
}
};
回调
setTimeout(function() {
// ...
}, 500);
// vs
setTimeout(() => {
// ...
}, 500);
可变参数函数
function sum() {
let args = [].slice.call(arguments);
// ...
}
// vs
const sum = (...args) => {
// ...
};
答:
tl;dr:不!箭头函数和函数声明/表达式不等价,不能盲目替换。
如果要替换的函数不使用 ,并且未使用 调用,则为 yes。this
arguments
new
一如既往:视情况而定。箭头函数的行为与函数声明/表达式不同,因此让我们先看一下差异:
1. 词汇 this
和 arguments
箭头函数没有自己的或绑定。相反,这些标识符像任何其他变量一样在词法范围内解析。这意味着在箭头函数内部,并参考箭头函数在环境中定义的值(即“外部”箭头函数):this
arguments
this
arguments
this
arguments
// Example using a function expression
function createObject() {
console.log('Inside `createObject`:', this.foo);
return {
foo: 42,
bar: function() {
console.log('Inside `bar`:', this.foo);
},
};
}
createObject.call({foo: 21}).bar(); // override `this` inside createObject
// Example using a arrow function
function createObject() {
console.log('Inside `createObject`:', this.foo);
return {
foo: 42,
bar: () => console.log('Inside `bar`:', this.foo),
};
}
createObject.call({foo: 21}).bar(); // override `this` inside createObject
在函数表达式中,指在 中创建的对象。在箭头函数的情况下,指自身。this
createObject
this
this
createObject
这使得箭头函数在您需要访问当前环境时很有用:this
// currently common pattern
var that = this;
getData(function(data) {
that.data = data;
});
// better alternative with arrow functions
getData(data => {
this.data = data;
});
请注意,这也意味着无法将箭头函数的 设置为 或 。this
.bind
.call
如果你不是很熟悉,可以考虑阅读this
2. 箭头函数不能用 new
调用
ES2015 区分了可调用的函数和可构造的函数。如果一个函数是可构造的,则可以用 调用它,即 。如果一个函数是可调用的,则可以不调用它(即普通函数调用)。new
new User()
new
通过函数声明/表达式创建的函数既是可构造的,也是可调用的。
箭头函数(和方法)只能调用。 构造函数只能构造。class
如果尝试调用不可调用的函数或构造不可构造的函数,则会出现运行时错误。
知道了这一点,我们可以陈述以下内容。
更换:
- 不使用 或 的函数。
this
arguments
- 用于
.bind(this)
不可更换:
- 构造函数
- 添加到原型中的函数/方法(因为它们通常使用
this
) - 可变参数函数(如果他们使用(见下文))
arguments
- 生成器函数,需要符号
function*
让我们通过您的示例仔细看看这一点:
构造函数
这是行不通的,因为箭头函数不能用 调用。继续使用函数声明/表达式或使用 .new
class
原型方法
很可能不是,因为原型方法通常用于访问实例。如果他们不使用 ,那么您可以替换它。但是,如果您主要关心简洁的语法,请使用其简洁的方法语法:this
this
class
class User {
constructor(name) {
this.name = name;
}
getName() {
return this.name;
}
}
对象方法
同样,对于对象文本中的方法也是如此。如果该方法想要通过 引用对象本身,请继续使用函数表达式,或使用新的方法语法:this
const obj = {
getName() {
// ...
},
};
回调
这要视情况而定。如果您正在为外部混叠或使用:this
.bind(this)
// old
setTimeout(function() {
// ...
}.bind(this), 500);
// new
setTimeout(() => {
// ...
}, 500);
但:如果调用回调的代码显式设置为特定值(事件处理程序(尤其是 jQuery)中经常出现的情况),并且回调使用 (或 ),则不能使用箭头函数!this
this
arguments
可变参数函数
由于箭头函数没有自己的函数,因此不能简单地用箭头函数替换它们。但是,ES2015 引入了使用 rest 参数的替代方法。arguments
arguments
// old
function sum() {
let args = [].slice.call(arguments);
// ...
}
// new
const sum = (...args) => {
// ...
};
相关问题:
- 什么时候应该在 ECMAScript 6 中使用箭头函数?
- ES6 箭头函数有自己的参数吗?
- ES6 箭头函数和 Function.prototype.bind 绑定的函数之间有什么区别(如果有的话)?
- 如何使用箭头函数(公共类字段)作为类方法?
更多资源:
评论
this
super
.prototype
AssignmentExpression
PrimaryExpression
() => {}()
x || () => {}
new
箭头函数 = 迄今为止最好的 ES6 功能>。他们是一个非常 ES6 的强大补充,我经常使用。
等等,你不能在代码中的任何地方都使用箭头函数,它不会在所有情况下都起作用,比如箭头函数不可用。毫无疑问,箭头函数是一个很好的补充,它带来了代码的简单性。this
但是,当需要动态上下文时,您不能使用箭头函数:定义方法,使用构造函数创建对象,在处理事件时从中获取目标。
不应使用箭头函数,因为:
他们没有
这个
它使用“词法范围”来计算“”的值 应该是。在简单的词法范围中,它使用 “” 从 在函数的主体内。
this
this
他们没有
论据
箭头函数没有对象。但同样 可以使用 REST 参数实现功能。
arguments
let sum = (...args) => args.reduce((x, y) => x + y, 0);
sum(3, 3, 1) // output: 7
它们不能与
新的
一起使用箭头函数不能是构造函数,因为它们没有原型属性。
何时使用箭头功能,何时不使用:
- 不要用于将函数添加为对象文字中的属性,因为我们 无法访问此内容。
- 函数表达式最适合对象方法。箭头函数
最适合回调或方法,如 、 或 。
map
reduce
forEach
- 对按名称调用的函数使用函数声明(因为 他们被吊起来)。
- 使用箭头函数进行回调(因为它们往往更简洁)。
评论
arguments
为了将箭头函数与 一起使用,我在对象原型上创建了一个辅助函数:function.prototype.call
// Using
// @func = function() {use this here} or This => {use This here}
using(func) {
return func.call(this, this);
}
用法
var obj = {f:3, a:2}
.using(This => This.f + This.a) // 5
你不需要帮手。您可以执行以下操作:
var obj = {f:3, a:2}
(This => This.f + This.a).call(undefined, obj); // 5
它们并不总是等价的。在这种情况下,您不能简单地使用箭头函数而不是常规函数。
箭头函数不能用作构造函数
顶级域名:
这是因为 Arrow Functions 如何使用 this 关键字。如果 JS 看到箭头函数被调用为“构造函数”,它只会抛出错误。使用常规函数修复错误。
更长的解释:
这是因为对象“构造函数”依赖于 this 关键字才能进行修改。
通常,this 关键字始终引用全局对象。(在浏览器中,它是窗口对象)。
但是,当你做这样的事情时:
function personCreator(name) {
this.name = name;
}
const person1 = new personCreator('John');
new 关键字发挥了它的一些魔力,并使 personCreator 内部的 this 关键字最初是一个空对象,而不是引用全局对象。之后,在空这个对象中创建一个名为 name 的新属性,其值将为“John”。最后,返回 this 对象。
正如我们所看到的,new 关键字将 this 的值从引用全局对象更改为现在的空对象 {}。
箭头函数不允许修改其 this 对象。它们的 this 对象始终是静态创建它们的范围内的对象。这称为静态词法作用域。这就是为什么您不能使用箭头函数执行绑定、应用或调用等操作的原因。简单地说,它们的 this 被锁定在创建它们的作用域的 this 的值上。这是设计使然。
由于这种:D,箭头函数不能用作“构造函数”。
旁注:
词法范围只是创建函数的区域。例如:
function personCreator(name) {
this.name = name;
const foo = () => {
const bar = () => {
console.log(this); // Output: { name: 'John' }
}
console.log(this); // Output: { name: 'John' }
bar();
}
foo();
}
const person1 = new personCreator('John');
bar 的词汇范围是 foo 中的所有内容。所以,bar 的这个值是 foo 的那个值,也就是 personCreator 的值。
评论
this
timesCalled
.click( () => { } )
.click(function() { })