最近又重新阅读《你不知道的JavaScript》系列书籍,将以前的笔记进行整理总结一下,今天就讲解一下this相关的问题,实际上该系列书籍中对于this的说明以及讲解非常的详细,本篇文章的目的有两个:
首先就从几道面试题来开始this部分的说明,面试题如下:
function test() {
console.log(this.name);
}
var obj = {
name: 'whoami',
getName: test
};
var name = 'which';
obj.getName();
var output = obj.getName;
output();
function test() {
console.log(this.name);
}
var obj = {
name: 'whoami',
getName: test
};
setTimeout(obj.getName, 1000);
function test(x) {
this.x = x;
return this;
}
var x = test(5);
var y = test(6);
console.log(x.x);
console.log(y.x);
下面就分析下上面三道面试题所涉及的this的问题,结果如下:
第一道:
'whoami'、'which'(严格模式下, 第二个结果是undefined)
第二道:
undefined
第三道:
undefined、6
第一道题涉及的知识点:this绑定的两种方式以及绑定丢失
第二道题…:this隐式绑定、绑定丢失
第三道题…:this默认绑定、变量提升、同名变量知识
在彻底明白上面结果是如何得来前,先具体讲解下this的绑定时间、四种绑定方式以及其优先级:
this存在于所有函数中,在函数调用时被赋值
function test() {
console.log(this);
}
test(); // this === window
function test() {
console.log(this);
}
var obj = {
getValue: test
};
obj.getValue(); // obj {}
function test() {
console.log(this);
}
var obj = {
name: 'whoami'
};
test.call(obj); // obj {name: 'whoami'}
function Test() {
console.log(this);
}
var test = new Test(); // Test(){}
这四种方式的优先级如下(从高到低依次):
new绑定 显式绑定 隐式绑定 默认绑定
凡事总有例外,this的绑定也是,下面说明几种例外:
function test() {
console.log(this);
}
var obj = {
getValue: test // 此处是隐式绑定
};
var output = obj.getValue; // 赋值
output(); // 赋值导致绑定丢失,此时应用默认绑定
/**
* (output = obj.getValue)() 等价于output()
*/
/**
* setTimeout() 实际上类似于
* function setTimeout(fn, delay) {
* }
* fn = obj.getValue故也会导致绑定丢失,应用默认绑定
*/
setTimeout(obj.getValue, 1000);
function test() {
console.log(this);
}
test.call(null); // this === undefined(严格模式下)
test.call(undefined); // this === window(非严格模式下)
test.call(2); // 此时应用显式绑定,因为除了Null、Undefined类型之外的其他类型在进行操作时都会在底层产生该类型的对象
再回头看三道面试题:
就具体分析下第三道面试题:
function test(x) {
this.x = x;
return this;
}
var x = test(5);
var y = test(6);
console.log(x.x);
console.log(y.x);
因为全局变量会自动成为window的属性、变量和函数提升的问题,上面的代码实际上如下:
function test(x) {
// this === window,所以this.x = window.x
this.x = x;
return this;
}
var x, y;
x = test(5);
// 此时window.x === x, x === widnow
y = a(6);
// 此时x === 6
// x.x 此时为6.x, 故为undefined
console.log(x.x);
// y.x 此时为window.x
console.log(y.x);
下面补充下其他情况this指向:
function test() {
(function() {
console.log(this);
})();
}
test(); // this === window
ES6中增加了箭头函数,该函数有两个作用:
var test = () => console.log(this);
test(); // this === window
test.call({}); // this === window
this的总结就到这里了,每天进步一点,致远行的你我。