Heim > Artikel > Web-Frontend > Das Schlüsselwort „this“ verstehen
Wenn Sie eine Funktion erstellen, erstellt diese einen Bereich mit dem Namen this
的关键字(在幕后),该关键字链接到函数运行的对象。换句话说,this
, der für ihre Funktion verwendet werden kann, aber es handelt sich um einen Verweis auf das Objekt, das die Funktion als Eigenschaft oder Methode hat.
Werfen wir einen Blick auf die cody
Objekte aus dem vorherigen Artikel:
Beispiel: sample98.html
<!DOCTYPE html><html lang="en"><body><script> var cody = { living: true, age: 23, gender: 'male', getGender: function () { return cody.gender; } }; console.log(cody.getGender()); // Logs 'male'. </script></body></html>
Beachten Sie, wie wir innerhalb der Funktion getGender
auf die Eigenschaft gender
mithilfe der Punktnotation (cody.gender
) am getGender
函数内部,我们如何在 cody
对象本身上使用点表示法 (cody.gender
) 访问 gender
属性。可以使用 this
重写来访问 cody
对象,因为 this
指向 cody
-Objekt selbst zugreifen. Auf das
-Überschreibung zugegriffen werden, da
auf das-Objekt zeigt. this.gender
中使用的 this
<!DOCTYPE html><html lang="en"><body><script> var cody = { living: true, age: 23, gender: 'male', getGender: function () { return this.gender; } }; console.log(cody.getGender()); // Logs 'male'. </script></body></html>
this
的主题可能会令人困惑,但事实并非如此。请记住,一般来说, this
在函数内部使用来引用该函数所包含的对象,而不是函数本身(例外情况包括使用 new
关键字或 call()
和 应用()
bezieht sich lediglich auf das Cody-Objekt, das die Funktion ausführt.
this
Das arguments
和发送到函数的任何参数相反,this
Schlüsselwort
arguments
und allen an eine Funktion gesendeten Argumenten this
sind Schlüsselwörter (keine Eigenschaften) im aufrufenden/aktivierenden Objekt.
Wie wird der Wert von this
myObject
对象被赋予一个名为 sayFoo 的属性,该属性指向 sayFoo
函数。当从全局范围调用 sayFoo
函数时,this
引用 window
对象。当作为 myObject 的方法调用时,this
指的是 myObject
Der an alle Funktionen übergebene Wert von
myObject
有一个名为 foo
Dem myObject
-Objekt im folgenden Codebeispiel wird eine Eigenschaft namens sayFoo zugewiesen, die auf die Funktion sayFoo
verweist. Wenn die Funktion sayFoo
aus dem globalen Bereich aufgerufen wird, verweist
-Objekt. Beim Aufruf als Methode von myObject bezieht sich
aufmyObject
.
this
的值基于调用该函数的上下文。考虑 myObject.sayFoo
和 sayFoo
都指向相同的函数。但是,根据调用 sayFoo()
的位置(上下文),this
Wird aufgrund der Eigenschaften von
window
Beispiel: sample100.html
<!DOCTYPE html><html lang="en"><body><script> var foo = 'foo'; var myObject = { foo: 'I am myObject.foo' }; var sayFoo = function () { console.log(this['foo']); }; // Give myObject a sayFoo property and have it point to the sayFoo function. myObject.sayFoo = sayFoo; myObject.sayFoo(); // Logs 'I am myObject.foo'. sayFoo(); // Logs 'foo'. </script></body></html>
Offensichtlich basiert der Wert von
auf dem Kontext, in dem die Funktion aufgerufen wird. Bedenken Sie, dassmyObject.sayFoo
und sayFoo
beide auf dieselbe Funktion verweisen. Je nachdem, wo (Kontext) sayFoo()
aufgerufen wird, unterscheidet sich der Wert von jedoch.
Wenn es hilft, hier ist derselbe Code, der das Header-Objekt explizit verwendet (this
和 arguments
).
<!DOCTYPE html><html lang="en"><body><script> window.foo = 'foo'; window.myObject = { foo: 'I am myObject.foo' }; window.sayFoo = function () { console.log(this.foo); }; window.myObject.sayFoo = window.sayFoo; window.myObject.sayFoo(); window.sayFoo(); </script></body></html>
this
Stellen Sie sicher, dass Sie sich beim Übergeben einer Funktion oder beim Erstellen mehrerer Verweise auf eine Funktion darüber im Klaren sind, dass sich der Wert davon abhängig vom Kontext ändert, in dem Sie die Funktion aufrufen. Alle Variablen außer this
在一个包含在另一个函数中的函数内部使用时会发生什么。坏消息是在 ECMA 3 中,this
迷失了方向并引用了头对象(浏览器中的 window
und arguments
respektieren den lexikalischen Geltungsbereich
func2
和 func3
中的 this
迷失了方向,并且不是指向 myObject
Sie fragen sich vielleicht, was passiert, wenn
in einer Funktion verwendet wird, die in einer anderen Funktion enthalten ist. Die schlechte Nachricht ist, dass
in ECMA 3 verloren gegangen ist und auf das Header-Objekt (das-Objekt im Browser) verwiesen hat, anstatt auf das Objekt, in dem die Funktion definiert ist. foo.func1
时会发生什么。当在 foo.func1
(函数中的函数)内部调用匿名函数时,匿名函数内部的 this
in func2
und func3
verloren und verweisen nicht auf myObject
, sondern auf das Hauptobjekt.
Beispiel: sample102.htmlthis
<!DOCTYPE html><html lang="en"><body><script> var myObject = { func1: function () { console.log(this); // Logs myObject. var func2 = function () { console.log(this) // Logs window, and will do so from this point on. var func3 = function () { console.log(this); // Logs window, as it’s the head object. } (); } (); } } myObject.func1(); </script></body></html>Die gute Nachricht ist, dass dieses Problem in ECMAScript 5 gelöst wird. Mittlerweile sollten Sie sich dieses Dilemmas bewusst sein, insbesondere wenn Sie anfangen, Funktionen als Werte an andere Funktionen zu übergeben.
foo.func1
übergeben. Wenn eine anonyme Funktion innerhalb von foo.func1
(einer Funktion innerhalb einer Funktion) aufgerufen wird, ist der
this
值不会丢失,您可以简单地使用作用域链在父函数中保留对 this
的引用。以下示例演示了如何使用名为 that
Beispiel: sample103.html
<!DOCTYPE html><html lang="en"><body><script> var foo = { func1: function (bar) { bar(); // Logs window, not foo. console.log(this); // The this keyword here will be a reference to the foo object. } } foo.func1(function () { console.log(this) }); </script></body></html>
Jetzt vergessen Sie nie: Der
-Wert ist immer ein Verweis auf das Hauptobjekt, wenn seine Hostfunktion in eine andere Funktion eingeschlossen oder im Kontext einer anderen Funktion aufgerufen wird (auch dies ist in ECMAScript 5 behoben). 🎜 🎜 🎜Verwenden Sie die Bereichskette, um das Problem verschachtelter Funktionen zu lösen🎜 🎜Damit der 🎜-Wert nicht verloren geht, können Sie einfach eine Bereichskette verwenden, um einen Verweis auf 🎜 in der übergeordneten Funktion beizubehalten. Das folgende Beispiel zeigt, wie wir den Funktionskontext besser verfolgen können, indem wir eine Variable mit dem Namenthat
verwenden und ihren Gültigkeitsbereich nutzen. 🎜
🎜Beispiel: sample104.html🎜
<!DOCTYPE html><html lang="en"><body><script> var myObject = { myProperty: 'I can see the light', myMethod : function(){ var that = this; // Store a reference to this (myObject) in myMethod scope. var helperFunction = function() { // Child function. // Logs 'I can see the light' via scope chain because that = this. console.log(that.myProperty); // Logs 'I can see the light'. console.log(this); // Logs window object, if we don't use "that". }(); } } myObject.myMethod(); // Invoke myMethod. </script></body></html>
call()
或 apply()
控制 this
的值
this
的值通常由调用函数的上下文确定(除非使用 new 关键字,稍后会详细介绍),但您可以使用 this
的值>apply() 或 call()
来定义调用函数时 this
指向什么对象。使用这些方法就像在说:“嘿,调用 X 函数,但告诉该函数使用 Z 对象作为 this
的值。”通过这样做,JavaScript 确定 this
值的默认方式将被覆盖。
在下一个示例中,我们创建一个对象和一个函数。然后我们通过 call()
调用该函数,以便函数内 this
的值使用 myObject
作为其上下文。 myFunction
函数内的语句将使用属性填充 myObject
,而不是填充头对象。我们更改了 this
(在 myFunction
内部)引用的对象。
示例:sample105.html
<!DOCTYPE html><html lang="en"><body><script> var myObject = {}; var myFunction = function (param1, param2) { // Set via call(), 'this' points to myObject when function is invoked. this.foo = param1; this.bar = param2; console.log(this) // Logs Object {foo = 'foo', bar = 'bar'} }; myFunction.call(myObject, 'foo', 'bar'); // Invoke function, set this value to myObject. console.log(myObject) // Logs Object {foo = 'foo', bar = 'bar'} </script></body></html>
在前面的示例中,我们使用了 call()
,但也可以使用 apply()
。两者之间的区别在于函数参数的传递方式。使用 call()
,参数只是逗号分隔的值。使用 apply()
,参数值在数组内部传递,如以下示例所示。
示例:sample106.html
<!DOCTYPE html><html lang="en"><body><script> var myObject = {}; var myFunction = function (param1, param2) { // Set via apply(), this points to myObject when function is invoked. this.foo = param1; this.bar = param2; console.log(this) // Logs Object {foo = 'foo', bar = 'bar'} }; myFunction.apply(myObject, ['foo', 'bar']); // Invoke function, set this value. console.log(myObject) // Logs Object {foo = 'foo', bar = 'bar'} </script></body></html>
这里您需要学习的是,您可以覆盖 JavaScript 在函数作用域中确定 this
值的默认方式。
this
关键字当使用 new
关键字调用函数时,构造函数中声明的 this
的值指的是实例本身。换句话说:在构造函数中,我们可以在实际创建对象之前通过 this
来利用该对象。在这种情况下, this
的默认值的更改方式类似于使用 call()
或 apply()
。
在下面的示例中,我们设置了一个 Person
构造函数,该函数使用 this
来引用正在创建的对象。当创建 Person
的实例时,this.name
将引用新创建的对象,并在新对象中放置一个名为 name 的属性,并将参数 (name
) 中的值传递给构造函数。 p>
示例:sample107.html
<!DOCTYPE html><html lang="en"><body><script> var Person = function (name) { this.name = name || 'john doe'; // this will refer to the instance created. } var cody = new Person('Cody Lindley'); // Create an instance based on the Person constructor. console.log(cody.name); // Logs 'Cody Lindley'. </script></body></html>
同样,当使用 new
关键字调用构造函数时,this
指的是“将成为的对象”。如果我们没有使用 new
关键字,则 this
的值将是调用 Person
的上下文 - 在本例中为头对象。让我们看一下以下场景:
示例:sample108.html
<!DOCTYPE html><html lang="en"><body><script> var Person = function (name) { this.name = name || 'john doe'; } var cody = Person('Cody Lindley'); // Notice we did not use 'new'. console.log(cody.name); // Undefined. The value is actually set at window.name console.log(window.name); // Logs 'Cody Lindley'. </script></body></html>
this
引用构造函数实例当在添加到构造函数 prototype
属性的函数中使用时,this
指的是调用该方法的实例。假设我们有一个自定义 Person()
构造函数。作为参数,它需要人的全名。如果我们需要访问人员的全名,我们将 whatIsMyFullName
方法添加到 Person.prototype
中,以便所有 Person
实例继承该方法。当使用 this
时,该方法可以引用调用它的实例(以及它的属性)。
这里我演示了创建两个Person
对象(cody
和lisa
)以及继承的whatIsMyFullName
方法,其中包含this关键字来访问实例。
示例:sample109.html
<!DOCTYPE html><html lang="en"><body><script> var Person = function (x) { if (x) { this.fullName = x }; }; Person.prototype.whatIsMyFullName = function () { return this.fullName; // 'this' refers to the instance created from Person() } var cody = new Person('cody lindley'); var lisa = new Person('lisa lindley'); // Call the inherited whatIsMyFullName method, which uses this to refer to the instance. console.log(cody.whatIsMyFullName(), lisa.whatIsMyFullName()); /* The prototype chain is still in effect, so if the instance does not have a fullName property, it will look for it in the prototype chain. Next, we add a fullName property to both the Person prototype and the Object prototype. See the notes that follow this sample. */ Object.prototype.fullName = 'John Doe'; var john = new Person(); // No argument is passed so fullName is not added to the instance. console.log(john.whatIsMyFullName()); // Logs 'John Doe'. </script></body></html>
这里要带走的概念是 that
关键字 this 用于在 prototype
对象中包含的方法内部使用时引用实例。如果实例不包含该属性,则开始查找原型。
如果 this
指向的实例或对象不包含所引用的属性,则应用适用于任何属性查找的相同规则,并且将在原型链上“查找”该属性。因此,在我们的示例中,如果 fullName
属性未包含在我们的实例中,则将在 Person.prototype.fullName
中查找 fullName
属性,然后在 Object.prototype.fullName
中查找。
Das obige ist der detaillierte Inhalt vonDas Schlüsselwort „this“ verstehen. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!