react组件生命周期

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

1、挂载

  constructor

  componentWillMount

  render

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

2、更新

  componentReceiveProps,只在props更新时调用

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

  componentWillUpdate

  render

  componentDidUpdate

3、卸载

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

 

上一篇:React-03:虚拟DOM 的两种创建方式


下一篇:小程序 图片转base64然后上传的坑点