美文网首页
react学习三

react学习三

作者: 梦行乌托邦 | 来源:发表于2020-08-05 10:58 被阅读0次

生命周期

页面初始化

constructor

  • componentWillMount(待废弃,用UNSAFE_前缀)

render

  • componentDidMount

更改state

  • getDerivedStateFromProps(新)
    返回null继续更新,否则修改state的值影响后续流程
  • shouldComponentUpdate
    返回true继续更新,返回false停止更新
  • componentWillUpdate(待废弃,用UNSAFE_前缀)

render

  • getSnapshotBeforeUpdate(新)

方法参数为:prevProps,prevState
返回null继续执行

  • componentDidUpdate

<br />

组件卸载前

  • componentWillUnmount

相关文章

网友评论

      本文标题:react学习三

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