作者:Dmitri Pavlutin翻译:疯狂的技术宅
原文:https://dmitripavlutin.com/fi...
未经允许严禁转载
我喜欢 JavaScript 中能够更改函数执行上下文(也称为 this
)的特性。
例如,你可以在类似数组的对象上使用数组方法:
const reduce = Array.prototype.reduce;
function sumArgs() {
return reduce.call(arguments, (sum, value) => {
return sum += value;
});
}
sumArgs(1, 2, 3); // => 6
但是从另一方面来说,this
关键字很难掌握。
你可能会经常去检查 this
的值不正确的原因。以下各节将会教给你一些把 this
绑定到所需的值简单的方法。
在开始之前,我需要一个辅助函数 execute(func)
。它只是用来执行作为参数的函数:
function execute(func) {
return func();
}
execute(function() { return 10 }); // => 10
现在,让我们继续了解围绕 this
的错误的本质:方法分离。
1. 方法分离问题
Person
类包含字段 firstName
和 lastName
。另外,它还有 getFullName()
方法,返回全名。
Person
的一种可能的实现方式是:
function Person(firstName, lastName) {
this.firstName = firstName;
this.lastName = lastName;
this.getFullName = function() {
this === agent; // => true
return `${this.firstName} ${this.lastName}`;
}
}
const agent = new Person('John', 'Smith');
agent.getFullName(); // => 'John Smith'
你会看到 Person
函数作为构造函数被调用:new Person('John','Smith')
。在 Person
函数内部创建新的实例。
agent.getFullName()
返回 person
的全名:'John Smith'
。不出所料,getFullName()
方法中的 this
等同于 agent
。
如果帮助函数执行 help.getFullName
方法将会发生什么:
execute(agent.getFullName); // => 'undefined undefined'
执行结果不正确:'undefined undefined'
。这个问题是由 this
值不正确引起的。
现在,在方法 getFullName()
中,this
的值是全局对象(浏览器环境中的 window)。假设 this
等于 window
,则对 ${window.firstName} ${window.lastName}
的评估为 undefined undefined
。
发生这种情况的原因是在调用 execute(agent.getFullName)
时该方法已与对象分离。基本上只是发生在常规函数调用上(而不是方法调用):
execute(agent.getFullName); // => 'undefined undefined'
// is equivalent to:
const getFullNameSeparated = agent.getFullName;
execute(getFullNameSeparated); // => 'undefined undefined'
这种效果就是我所说的与对象分离的方法。当方法被分离并随后执行时,它与其原始对象没有任何关系。
为了确保方法中的 this
指向正确的对象,你必须:
- 以属性访问器的形式执行该方法:
agent.getFullName()
- 或将
this
静态绑定到包含的对象(使用箭头函数,.bind()
方法等)
在方法分离问题中,返回的 this
不正确,以下面不同的形式出现:
在设置回调时
// `this` inside `methodHandler()` is the global object
setTimeout(object.handlerMethod, 1000);
在设置事件处理程序时
// React: `this` inside `methodHandler()` is the global object
<button onClick={object.handlerMethod}>
Click me
</button>
让我们继续了解一些有用的方法,来解决即使方法与对象是分开的,也能使其始终指向所需对象的问题。
2. 关闭上下文
使 this
指向类实例的最简单方法是使用附加变量 self
:
function Person(firstName, lastName) {
this.firstName = firstName;
this.lastName = lastName;
const self = this;
this.getFullName = function() {
self === agent; // => true
return `${self.firstName} ${self.lastName}`;
}
}
const agent = new Person('John', 'Smith');
agent.getFullName(); // => 'John Smith'
execute(agent.getFullName); // => 'John Smith'
getFullName()
会静态关闭 self
变量,从而有效地手动绑定到 this
。
现在,当调用 execute(agent.getFullName)
时返回 'John Smith'
,因为 getFullName()
方法始终具有正确的 this
值,所以能够正常工作。
3. 使用箭头功能对 this 进行语义化
有没有一种可以在没有其他变量的情况下静态绑定 this
的方法?是的,这正是箭头函数的作用。
为了使用箭头函数,让我们重构 Person
:
function Person(firstName, lastName) {
this.firstName = firstName;
this.lastName = lastName;
this.getFullName = () => `${this.firstName} ${this.lastName}`;
}
const agent = new Person('John', 'Smith');
agent.getFullName(); // => 'John Smith'
execute(agent.getFullName); // => 'John Smith'
箭头函数用词法绑定 this
。简而言之,它使用定义在其中的外部函数的 this
值。
我建议在所有需要使用外部函数上下文的情况下都使用箭头函数。
4.绑定上下文
让我们再向前迈出一步,并使用 ES2015 类来重构 Person
。
class Person {
constructor(firstName, lastName) {
this.firstName = firstName;
this.lastName = lastName;
}
getFullName() {
return `${this.firstName} ${this.lastName}`;
}
}
const agent = new Person('John', 'Smith');
agent.getFullName(); // => 'John Smith'
execute(agent.getFullName); // => 'undefined undefined'
不幸的是,即使用了新的类语法,execute(agent.getFullName)
仍会返回 'undefined undefined'
。
在使用类的情况下,不能使用附加的变量 self
或箭头函数来固定 this
的值。
但是有一个涉及 bind() 方法的技巧,它将方法的上下文绑定到构造函数中:
class Person {
constructor(firstName, lastName) {
this.firstName = firstName;
this.lastName = lastName;
this.getFullName = this.getFullName.bind(this);
}
getFullName() {
return `${this.firstName} ${this.lastName}`;
}
}
const agent = new Person('John', 'Smith');
agent.getFullName(); // => 'John Smith'
execute(agent.getFullName); // => 'John Smith'
构造函数中的 this.getFullName = this.getFullName.bind(this)
把 getFullName()
方法绑定到类实例。
execute(agent.getFullName)
可以正常工作,返回 'John Smith'
。
5. 胖箭头方法
上述使用手动上下文绑定的方法需要样板代码。幸运的是,仍有改进的空间。
你可以用 JavaScript 的类字段建议来定义胖箭头方法:
class Person {
constructor(firstName, lastName) {
this.firstName = firstName;
this.lastName = lastName;
}
getFullName = () => {
return `${this.firstName} ${this.lastName}`;
}
}
const agent = new Person('John', 'Smith');
agent.getFullName(); // => 'John Smith'
execute(agent.getFullName); // => 'John Smith'
胖箭头函数 getFullName = () => { ... }
已绑定到类实例,即使你将方法与其对象分离开也是如此。
这是在类中绑定 this
的最有效,最简洁的方法。
六. 结论
与对象分离的方法对 this
产生了许多误解。你应该意识到这种影响。
要静态绑定 this
,你可以手动使用一个附加变量 self
来保存正确的上下文对象。但是更好的选择是使用箭头函数,它天生被设计为按词法绑定 this
。
在类中,你可以使用 bind()
方法在构造函数内部手动绑定类方法。
如果你想跳过编写样板代码,那么新的 JavaScript 建议类字段会带来胖箭头方法,该方法会自动将 this
绑定到类实例。
本文首发微信公众号:前端先锋
欢迎扫描二维码关注公众号,每天都给你推送新鲜的前端技术文章
欢迎继续阅读本专栏其它高赞文章:
- 深入理解Shadow DOM v1
- 一步步教你用 WebVR 实现虚拟现实游戏
- 13个帮你提高开发效率的现代CSS框架
- 快速上手BootstrapVue
- JavaScript引擎是如何工作的?从调用栈到Promise你需要知道的一切
- WebSocket实战:在 Node 和 React 之间进行实时通信
- 关于 Git 的 20 个面试题
- 深入解析 Node.js 的 console.log
- Node.js 究竟是什么?
- 30分钟用Node.js构建一个API服务器
- Javascript的对象拷贝
- 程序员30岁前月薪达不到30K,该何去何从
- 14个最好的 JavaScript 数据可视化库
- 8 个给前端的顶级 VS Code 扩展插件
- Node.js 多线程完全指南
- 把HTML转成PDF的4个方案及实现
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。