react性能优化
- 不要再
component
的props中使用箭头函数
或者bind
,因为每次使用箭头函数和bind函数时,都会重新绑定一个新的函数(内存地址不同)
,所以都会引起component
的componentShouldUpdate
,无论深浅拷贝
都会浪费性能
,解决办法是在constructor
中注册函数,在props
上使用{this.xxxx}
component
的props中使用箭头函数
或者bind
,因为每次使用箭头函数和bind函数时,都会重新绑定一个新的函数(内存地址不同)
,所以都会引起component
的componentShouldUpdate
,无论深浅拷贝
都会浪费性能
,解决办法是在constructor
中注册函数,在props
上使用{this.xxxx}
本文标题:
本文链接:https://www.haomeiwen.com/subject/wbojmftx.html
网友评论