react性能优化是哪个周期函数?
发布于 2020-01-14 23:42:50
关注者
0
被浏览
1598
1 个回答
-
shouldComponentUpdate这个方法用来判断是否需要调用render方法重新描绘dom。因为dom的描绘非常消耗性能,如果我们能在shouldComponentUpdate方法中能够写出更优化的dom diff算法,可以极大的提高性能。 详细参考:https://segmentfault.com/a/1190000006254212