当前位置:   article > 正文

看完javascript高级教程对this对象的理解_怎么理解内部函数永远不能直接访问外部函数的this和argunebts

怎么理解内部函数永远不能直接访问外部函数的this和argunebts

对于this的指向我自己总结下来,大概分四个环境

1.在全局中调用

this = window   // 这个就不做过多说明
  • 1

2.在标准函数中调用,this指向调用该函数的上下文。

window.color = 'red'
let o = { color: blue}
function saycolor() {
  consloe.log(this.color)
}
saycolor() // red	this = window  
o.saycolor = saycolor
o.saycolor()  // blue	this = o
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

3.在箭头函数中调用,this指向定义该箭头函数的上下文。

window.color = 'red'
let o = { color: blue}
let saycolor = () => {
  consloe.log(this.color)
}
saycolor() // red	this = window  
o.saycolor = saycolor
o.saycolor()  // red	this = window
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

4.在定时器中,this不做特殊指向则指定window

var name = 'my name is window';
  var obj ={
     name:'my name is obj',
      fn:function(){
          var timer = null;
          clearInterval(timer);
          timer = setInterval(function(){
          console.log(this.name)//my name is window
      },1000)
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

5.在闭包中,内部函数不能直接访问到外部函数的this与argument,若果想访问到则可以把this保存到闭包可以访问到的变量上去。

window.identity = 'the window'
let object = {
  identity = 'the object'
  getdentityFunc() {
	return function() {
	  return this.identity
	}
  }
}
console.log(object.getdentityFunc()())  //the window

// 把this保存到闭包可以访问到的变量上去。

window.identity = 'the window'
let object = {
  identity = 'the object'
  getdentityFunc() {
    let that = this
	return function() {
	  return that.identity
	}
  }
}
console.log(object.getdentityFunc()())  //the object

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/63542
推荐阅读
相关标签
  

闽ICP备14008679号