在本教程中,我们将了解如何在回调中访问正确的“this”。
每个函数都包含一个名为 this 的关键字,也称为“上下文”,其值由函数的调用方式决定,而不是由函数的定义方式、时间或位置决定。与其他变量不同,它不受词法作用域的影响。与其他语言相比,当使用函数的“this”关键字时,JavaScript 的行为略有不同。在严格模式和非严格模式之间,还有一些进一步的变化。
函数最常被调用的方式决定了“this”的值(运行时绑定)。每次调用该函数时它都可能会发生变化,并且在执行时不能通过赋值来更改。函数被调用的次数,bind() 方法可以设置该值,因为箭头函数不提供自己的“this”绑定(它保留封闭词法上下文的“this”值)。
从另一个函数接收参数的函数称为回调,通常在稍后的外部函数中使用。高阶函数是一个术语,用于描述接受回调的外部函数。
回调有自己的一组方法和属性,因为函数是 JavaScript 中的对象。在高阶函数内执行时分配给回调的“this”属性完全取决于回调的制作方式,而不是定义的位置、方式或时间。
通过检查调用回调的高阶函数,我们可以确定回调中的“this”值。封闭函数的实际定义可能包括本地范围的属性,这是回调中 this 问题的主要原因。但是,由于回调的上下文根据其调用方式而动态变化,因此当通过回调中的“this”绑定访问该属性时,它不存在。
现在我们将学习在回调中访问正确的“this”的方法。
创建一个名为 self 的变量,并在声明函数的范围内为其赋予 this 值是一种典型的模式。我们可以通过创建一个名为 self 的新变量(或任何其他有效的变量名称都可以)并为其赋予“this”值来实现所需的行为。
<html> <body> <h2> 'this' Inside a Callback using the <i> 'self' pattern </i> </h2> <button onclick="myFunction()"> Click here </button> <div id="root" style=" background-color: rgb(240, 248, 255); border: 1px solid gray; margin: 5px 0px; padding: 10px; "> Welcome to Tutorialspoint! </div> <script> const root = document.getElementById('root') function myFunction() { this.variable = 'I am this variable' const variable = 'I am a const variable' const self = this setTimeout(() => { root.innerHTML = this.variable + '<br/>' root.innerHTML += variable }, 1000) } </script> </body> </html>
ECMAScript 6 见证了 JavaScript 箭头函数的首次亮相。它们没有自己的绑定,是传统函数表达式的更简洁的替代方案。这确保了如果在箭头函数内部引用 this,它会作为常规变量在范围内进行搜索。
<html> <body> <h2> 'this' Inside a Callback using the <i> arrow function </i> </h2> <button onclick="myFunction('ABC')"> Click here </button> <div id="root" style=" background-color: rgb(240, 248, 255); border: 1px solid gray; margin: 5px 0px; padding: 10px; "> Welcome to Tutorialspoint! </div> <script> const root = document.getElementById('root') function myFunction(name) { this.name = name let obj = { run: function(callback) { setTimeout(callback, 1000) }, } obj.run(() => { root.innerHTML = this.name }) } </script> </body> </html>
该对象链接到它,这通常是当我们尝试在回调中访问它时真正想要访问的对象。创建变量并在回调作用域之前存储其值是实现此目的的一种方法(尽管有些程序员不愿意这样做,因为它看起来很混乱)。
有些人将其称为“that”或“self”,但只要术语明确,就没有关系。此解决方法非常有效,因为该变量符合词法范围要求,因此可在回调中使用。您仍然可以访问回调的动态 this 绑定,这是这种方式的另一个好处。
<html> <body> <h2> 'this' Inside a Callback using the <i> another variable to store the 'this' object </i> </h2> <button onclick="myFunction('XYZ')"> Click here </button> <div id="root" style=" background-color: rgb(240, 248, 255); border: 1px solid gray; margin: 5px 0px; padding: 10px; "> Welcome to Tutorialspoint! </div> <script> const root = document.getElementById('root') function myFunction(name) { this.name = name let that = this let obj = { run: function(callback) { setTimeout(callback, 1000) }, } obj.run(function() { root.innerHTML = this.name }) } </script> </body> </html>
当我们定义回调时,我们可以声明我们想要什么。我们可以使用bind()方法设置“this”值,并确保它在整个函数执行过程中保持这种状态,无论它是如何或在哪里调用或传递的。
bind() 方法在每个函数中都可用,并使用连接到给定对象的“this”属性创建一个新函数。返回函数和原始函数之间的唯一区别是您可以完全控制“this”属性指向的内容。
<html> <body> <h2> 'this' Inside a Callback using <i> explicitly binding this to an object </i> </h2> <button onclick="myFunction('Tutorialspoint')"> Click here </button> <div id="root" style=" background-color: rgb(240, 248, 255); border: 1px solid gray; margin: 5px 0px; padding: 10px; "> Welcome to Tutorialspoint! </div> <script> const root = document.getElementById('root') function myFunction(name) { this.name = name let callbackFunction = function() { root.innerHTML = this.name }.bind(this) let obj = { run: function(callbackFunction) { setTimeout(callbackFunction, 1000) }, } obj.run(callbackFunction) } </script> </body> </html>
以上是如何在回调中访问正确的'this”?的详细内容。更多信息请关注PHP中文网其他相关文章!