this关键字

2022-02-18  本文已影响0人  darkTi
  • 记住,对于function函数,this就是call的第一个参数!!!
  • 箭头函数的this定义:箭头函数的this是在定义函数时绑定的,而不是在执行过程中绑定的!!!
    人话:箭头函数没有this,箭头函数里出现this的话,你就把它当做普通变量,看外面有没有定义,注意啦!所以也可以说,如果箭头函数里出现了this,那么这个this的值就是声明箭头函数时定义的this的值,且后面一直会是这个值,不会改变!!!
  • 普通函数的this定义:基于函数的执行环境绑定的!!!
    人话:谁调用我谁就是我的this;

一、分析下面的代码

第一个
var a = {
  name: "里面的name",
  sayName: function () {
    console.log("this.name = " + this.name);
  },
};
var name = "外面的name";
function sayName() {
  var sss = a.sayName;
  sss(); //this.name = ?
  a.sayName(); //this.name = ?
  (a.sayName)(); //this.name = ?
  (b = a.sayName)(); //this.name = ?
}
sayName();

1、首先遇到调用,一定先变成call()的形式!!!

第二个
var length = 10;
function fn() {
  console.log(this.length);
}
var obj = {
  length: 5,
  method: function (fn) {
    fn();
    arguments[0]();
  },
};
obj.method(fn, 1);

2、还是需要先改写成call()的形式!!!

二、定时器中的this

1、 如果没有特殊指向,setInterval和setTimeout的回调函数中this的指向都是window。这是因为JS的定时器方法是定义在window下的。
2、看下面的代码,因为两个setTimeout都是在window下调用的,所以它们回调函数里面的this都是window,第一个setTimeout里的回调函数是add函数,它里面的this指向window,所以改动的就不是fn里的num,第二个setTimeout打印fn.num时,那肯定还是1啦~~~

function Fn (){
  console.log(this, 'this111')
  this.num = 1
  this.add = function (){
    console.log(this, 'this222')
    this.num++ 
  }
}
const fn = new Fn()
setTimeout(fn.add,1000)
setTimeout(function(){
  console.log(this, 'this333')
  console.log(fn.num, 'num')
},2000)
image.png

3、改一下上面第一个setTimeout里的回调函数,把里面的this指向fn了

function Fn (){
  console.log(this, 'this111')
  this.num = 1
  this.add = function (){
    console.log(this, 'this222')
    this.num++ 
  }
}
const fn = new Fn()
setTimeout(fn.add.bind(fn),1000)
setTimeout(function(){
  console.log(this, 'this333')
  console.log(fn.num, 'num')
},2000)
image.png

4、再看一组

function Fn(){
  this.x = function(){
    console.log(this, 'thisxxx')
  }
  this.y = ()=>{
    console.log(this, 'thisyyy')
  }
}
const fn = new Fn()

fn.x()
fn.y()

setTimeout(fn.x, 1000)
setTimeout(fn.y, 1000)
image.png
var obj = {
  x: function(){
    console.log(this, 'thisxxx')
  },
  y: ()=>{
    console.log(this, 'thisyyy')
  }
}

obj.x()
obj.y()
setTimeout(obj.x, 1000)
setTimeout(obj.y, 1000)
image.png

三、绑定this的方法

this的动态切换,固然为 JavaScript 创造了巨大的灵活性,但也使得编程变得困难和模糊。有时,需要把this固定下来,避免出现意想不到的情况。JavaScript 提供了call、apply、bind这三个方法,来切换/固定this的指向。

  1. Function.prototype.call()
var n = 123;
var obj = { n: 456 };
function a() {
  console.log(this.n);
}
a.call() // 123
a.call(null) // 123
a.call(undefined) // 123
a.call(window) // 123
a.call(obj) // 456
  1. Function.prototype.bind()
var d = new Date();
d.getTime() // 1481869925657

var print = d.getTime;
print() // Uncaught TypeError: this is not a Date object.

上面代码中,我们将d.getTime方法赋给变量print,然后调用print就报错了。这是因为getTime方法内部的this,绑定Date对象的实例,赋给变量print以后,内部的this已经不指向Date对象的实例了。
bind方法可以解决这个问题;

var print = d.getTime.bind(d);
print() // 1481869925657

四、参考下面三篇文章

1、this的值到底是什么?https://zhuanlan.zhihu.com/p/23804247
2、如何确定this;https://zhuanlan.zhihu.com/p/25991271
3、JS里为什么要有this;https://zhuanlan.zhihu.com/p/30164164

上一篇下一篇

猜你喜欢

热点阅读