函数绑定问题 this.event = this.event.bind(this)
来源:13-2 注册功能模块设计(中)
杨博脆
2018-03-22
请问老师,在注册事件的时候为什么要使用 this.event = this.event.bind(this) 绑定this环境呢? 为什么使用 () => () 箭头函数就不用绑定。 而且为什么在设置模态框状态的时候如果不使用箭头函数的话而使用this.event就会报错说state更新过于频繁?
烦请问一下老师
写回答
1回答
-
Parry
2018-03-23
ES6 中需要使用 this 绑定指定 this 的上下文。
具体你可以看下:https://blog.csdn.net/bingjay/article/details/53876773
00
相似问题