shly / Blog-New

学习笔记
0 stars 0 forks source link

PureComponent 和Component的区别 #35

Open shly opened 5 years ago

shly commented 5 years ago

React.PureComponent 的 shouldComponentUpdate() 只会对对象进行浅对比(只比较引用类的地址),所以会提升性能。PureComponent 不允许重写shouldComponentUpdate方法