标签:handler 自己 his 不能 绑定 and bubuko 作用域 代码块
箭头函数的作用域指向定义变量时,所在的作用域。
箭头函数指向Timer
箭头函数指向handler
this
指向的固定化,并不是因为箭头函数内部有绑定this
的机制,实际原因是箭头函数根本没有自己的this
,导致内部的this
就是外层代码块的this
。正是因为它没有this
,所以也就不能用作构造函数。
标签:handler 自己 his 不能 绑定 and bubuko 作用域 代码块
原文地址:https://www.cnblogs.com/zthtime/p/9146547.html