Preface
IntroductionFirst of all, we all know that this is a keyword in the Javascript language. It represents an internal object that is automatically generated when the function is running and can only be used within the function. The value of this will change depending on where the function is used. However, there is a general principle, that is, the direction of this cannot be determined when the function is defined. Only when the function is executed can it be determined who this actually points to. In fact, this ultimately points to the object that calls the function in which it is located. So let’s explore this issue step by step. Explore Onefunction a() { var user = "Steamed Bighead Carp"; console.log(this.name); //undefined console.log(this); //Window } a(); window.a(); //The two results are the same As we said above, this ultimately points to the object that calls the function in which it is located. Here, a is actually pointed out by the window object. Exploration 2var obj = { name: 'Steamed Fathead Fish', f1: function () { console.log(this.name); //Steamed bighead carp} }; obj.f1(); It is important to emphasize again that the direction of this cannot be determined when the function is defined. Only when the function is executed can we determine who this is pointing to. In this example, the f1 function where this is located is called by the obj object, so this here points to the obj object. Exploration ThreeIf you want to fully understand this, you must look at the following examples. var obj = { a: 5, b: { a: 10, fn: function () { console.log(this.a); //10 } } }; obj.b.fn(); Doesn't it mean that this ultimately refers to the object that calls the function in which it is located? Why doesn't this point to the obj object? Three points need to be added here:
Seeing this, I believe everyone has basically grasped the principle of this pointing. Let me repeat it again: the pointing of this cannot be determined when the function is defined. Only when the function is executed can we determine who this actually points to. In fact, this ultimately points to the object that calls the function in which it is located. Here are some different usage scenarios for thisConstructor (new keyword) case function Student() { this.name = 'Steamed Fathead Fish'; } var s1 = new Student(); console.log(s1.name); // Steamed bighead carp The reason why object s1 can point to the name in the function Student is because the new keyword can change the pointer of this to point to object s1. // The execution process of the new keyword 1. Create an empty object in the function body. 2. Let the current this point to this empty object. 3. Add key-value pairs to the currently empty object through this. 4. Return the object with all key-value pairs added to the external variable. The this pointer in the timer var num = 0; function Obj() { this.num = 1; this.getNum1 = function () { console.log(this.num); }; this.getNum2 = function () { setInterval(function () { console.log(this.num); }, 1000); }; } var o = new Obj(); o.getNum1();//1 (o.num) o.getNum2();//0 (window.num) The reason why the value of Solution: The function where var num = 0; function Obj() { this.num = 1; this.getNum1 = function () { console.log(this.num); }; this.getNum2 = function () { setInterval(function () { console.log(this.num); }.bind(this), 1000);//Use bind to bind this to this function}; } var o = new Obj(); o.getNum1();//1 (o.num) o.getNum2();//1 (o.num) explain:
According to the principles: Before using the The above is a detailed explanation of the this pointing problem in JavaScript. For more information about JavaScript this pointing, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: MySQL optimization connection optimization
1: Understand the meaning of address rewriting an...
This article example shares the specific code for...
MySQL backup Cold backup:停止服務進行備份,即停止數據庫的寫入Hot ba...
Recently, when I was doing a practice project, I ...
The full name of Blog should be Web log, which mea...
When starting MongoDB, the prompt is: error while...
Code Explanation 1.1 http:www.baidu.test.com defa...
This article shares the specific code of Vue intr...
According to canisue (http://caniuse.com/#search=...
Table of contents Semaphore Nginx hot deployment ...
Use CSS to modify the browser scroll bar style ::...
Preface: js is a single-threaded language, so it ...
The innodb_autoinc_lock_mode parameter controls t...
Table of contents 1. What is a closure? 2. The ro...
Preface Backup is the basis of disaster recovery....