码迷,mamicode.com
首页 > 其他好文 > 详细

如何对react进行性能优化

时间:2018-04-13 17:59:00      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:his   noi   href   http   str   follow   hand   添加   change   

  • {...this.props} (不要滥用,请只传递component需要的props,传得太多,或者层次传得太深,都会加重shouldComponentUpdate里面的数据比较负担,因此,也请慎用spread attributes(<Component {...props} />))。

  • ::this.handleChange()。(请将方法的bind一律置于constructor)

  • this.handleChange.bind(this,id)

  • 复杂的页面不要在一个组件里面写完。

  • 请尽量使用const element。

  • map里面添加key,并且key不要使用index(可变的)。具体可参考 使用Perf工具研究React Key对渲染的影响

  • 尽量少用setTimeOut或不可控的refs、DOM操作。

  • 数据尽可能简单明了,扁平化。

如何对react进行性能优化

标签:his   noi   href   http   str   follow   hand   添加   change   

原文地址:https://www.cnblogs.com/qiqi105/p/8821362.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!