标签:bsp tps nerd prope events 性能 简单 UNC log
参考这篇文章:Choosing the Best Approach for React Event Handlers
1、function.bind()方式
2、inline arrow function方式
3、Class Property Arrow Functions
第一种方式比较常见,但因为每次父组件render时,会重新生成一个函数,相当于子组件的props发生了改变。子组件的PureComponent会失效。
第二种是一种性能好,书写简单,功能强大的方式。
第三种因为是类的属性,可能涉及到继承、方法调用问题,性能有影响。
https://reactjs.org/docs/handling-events.html
标签:bsp tps nerd prope events 性能 简单 UNC log
原文地址:https://www.cnblogs.com/xiaofish/p/10741925.html