Home > Web Front-end > JS Tutorial > body text

Learn detailed explanation and working principle of this example in javaScript_Basic knowledge

WBOY
Release: 2016-05-16 17:04:11
Original
1112 people have browsed it

How this works

If a function is called as a method of an object, then this will be assigned to the object.

Copy code The code is as follows:

var parent = {
method: function () {
console.log(this);
}
};

parent.method();
// <- parent


Note that this behavior is very "fragile". If you get a reference to a method and call it, the value of this will not be the parent, but the window global object. This confuses most developers.

Copy code The code is as follows:

ThisClownCar();
// <- Window

Change this

.call, .apply and .bind methods are used to operate the method of calling functions and help us define the value of this and the parameter values ​​passed to the function.

Function.prototype.call can have any number of parameters, the first parameter is assigned to this, and the rest are passed to the calling function.

Copy code The code is as follows:

Array.prototype.slice.call([1, 2 , 3], 1, 2)
// <- [2]

Function.prototype.apply behaves similarly to .call, but the parameter it passes to the function is an array instead of Any parameters.

String.prototype.split.apply('13.12.02', ['.'])
// <- ['13', '12', '02']

Function.prototype.bind creates a special function that will always use the parameters passed to .bind as the value of this, and can assign some parameters to create a curried version of the original function.

Copy code The code is as follows:

var arr = [1, 2];
var add = Array.prototype.push.bind(arr, 3);

// effectively the same as arr.push(3)
add();

// effectively the same as arr.push(3, 4)
add(4);

console.log(arr);
// <- [1, 2, 3, 3, 4]


this in the scope chain

In the following example, this will not remain unchanged in the scope chain. This is a flaw in the rules, and often causes confusion for amateur developers.

Copy code The code is as follows:

function scoping () {
console.log( this);

return function () {
console.log(this);
};
}

scoping()();
// <- Window
// <- Window

A common method is to create a local variable to hold a reference to this, and there cannot be a variable with the same name in the child scope. A variable with the same name in the child scope will overwrite the reference to this in the parent scope. http://www.cnblogs.com/sosoft/

Copy code The code is as follows:

function retaining () {
var self = this;

return function () {
console.log(self);
};
}

retaining ()();
// <- Window

Unless you really want to use both this of the parent scope and the current this value, for some inexplicable reason, I prefer to use the .bind function. This can be used to assign this from the parent scope to the child scope.

Copy code The code is as follows:

function bound () {
return function () {
console.log(this);
}.bind(this);
}

bound()();
// <- Window
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template