美文网首页
react函数式组件与class组件优化性能

react函数式组件与class组件优化性能

作者: 阿凡农 | 来源:发表于2021-06-23 16:24 被阅读0次

    1、class组件,使用showComponentUpdate钩子函数,在函数内部对props和state进行判断,如果需要更新,则返回true,否则返回false
    2、采用class Com extend React.purComponent(),该组件自动帮忙完成了showComponentUpdate的逻辑
    3、函数式组件使用React.memo()

    相关文章

      网友评论

          本文标题:react函数式组件与class组件优化性能

          本文链接:https://www.haomeiwen.com/subject/ddvbyltx.html