this为什么会为undefined?
‘运行环境’也是对象, this 指向 运行时所在的对象 。
如下:
函数体内的 this 对象,就是 定义时所在的对象 ,而不是使用时所在的对象。
本来记住这几点已经可以了, this 最终找到是可能 window ,但是 undefined 是怎么又是怎么来的,本妹子下面将一步步分析。
综上所述,this指向运行时所在的对象或指向定义时所在的对象,但是这个对象可能最后找到是 window ,但都不可能是 undefined ,那么 undefined 是怎么来的呢?
我们一般写js文件都是 babel 转成 ES6 的, babel 会自动给js文件上加上严格模式。
用了严格模式 "use strict" , 严格模式下无法再意外创建全局变量 ,所以 this 不为 window 而为 undefined
严格模式为什么对箭头函数没有效果,返回还是 window ?
Given that this comes from the surrounding lexical context, strict mode rules with regard to this are ignored.
lexical means that this refers to the this value of a lexically enclosing function.
综上所述,在箭头函数中, this 为 lexical 类型, lexical 意味着这个 this 指是所在封闭函数中 this ,所以严格模式会自动忽视 use strict ,所以 this 如下所示:
箭头函数中, this 指向运行时所在的对象,而 use strict 被移到函数内了,所以 this 为全局变量 window 。
Happy coding ~~ ^ ^