react组件生命周期

react组件生命周期分为三大部分:

1、挂载

  constructor

  componentWillMount

  render

  componentDidMount组件挂载完成可以请求后台数据

2、更新

  componentReceiveProps,只在props更新时调用

  shoudComponentUpdate(nextProps, nextState) 根据返回结果true/false决定要不要重新渲染,性能优化可以在这里做。

  componentWillUpdate

  render

  componentDidUpdate

3、卸载

  componentWillUnmount 此时可以清除定时器,取消发布订阅

 

posted @ 2021-08-19 01:06  sunny-web  阅读(36)  评论(0编辑  收藏  举报