React 组件生命周期

在本章节中我们将讲解 React 组件的生命周期。

组件的生命周期可分成三个状态:

  • Mounting(挂载):已插入真实 DOM
  • Updating(更新):正在被重新渲染
  • Unmounting(卸载):已移出真实 DOM


挂载

当组件实例被创建并插入 DOM 中时,其生命周期调用顺序如下:

  • constructor(): 在 React 组件挂载之前,会调用它的构造函数。
  • getDerivedStateFromProps(): 在调用 render 方法之前调用,并且在初始挂载及后续更新时都会被调用。
  • render(): render() 方法是 class 组件中唯一必须实现的方法。
  • componentDidMount(): 在组件挂载后(插入 DOM 树中)立即调用。

render() 方法是 class 组件中唯一必须实现的方法,其他方法可以根据自己的需要来实现。


更新

每当组件的 state 或 props 发生变化时,组件就会更新。

当组件的 props 或 state 发生变化时会触发更新。组件更新的生命周期调用顺序如下:

  • getDerivedStateFromProps(): 在调用 render 方法之前调用,并且在初始挂载及后续更新时都会被调用。根据 shouldComponentUpdate() 的返回值,判断 React 组件的输出是否受当前 state 或 props 更改的影响。
  • shouldComponentUpdate(): 当 props 或 state 发生变化时,shouldComponentUpdate() 会在渲染执行之前被调用。
  • render(): render() 方法是 class 组件中唯一必须实现的方法。
  • getSnapshotBeforeUpdate(): 在最近一次渲染输出(提交到 DOM 节点)之前调用。
  • componentDidUpdate(): 在更新后会被立即调用。

render() 方法是 class 组件中唯一必须实现的方法,其他方法可以根据自己的需要来实现。


卸载

当组件从 DOM 中移除时会调用如下方法:

  • componentWillUnmount(): 在组件卸载及销毁之前直接调用。

实例

以下是一个当前时间的实例,每秒更新:

  1. class Clock extends React.Component {
  2. constructor(props) {
  3. super(props);
  4. this.state = {date: new Date()};
  5. }
  6. componentDidMount() {
  7. this.timerID = setInterval(
  8. () => this.tick(),
  9. 1000
  10. );
  11. }
  12. componentWillUnmount() {
  13. clearInterval(this.timerID);
  14. }
  15. tick() {
  16. this.setState({
  17. date: new Date()
  18. });
  19. }
  20. render() {
  21. return (
  22. <div>
  23. <h1>Hello, World!</h1>
  24. <h2>现在时间是:{this.state.date.toLocaleTimeString()}.</h2>
  25. </div>
  26. );
  27. }
  28. }
  29. ReactDOM.render(
  30. <Clock ></Clock>,
  31. document.getElementById('root')
  32. );

以下实例在 Hello 组件加载以后,通过 componentDidMount 方法设置一个定时器,每隔100毫秒重新设置组件的透明度,并重新渲染:

  1. class Hello extends React.Component {
  2. constructor(props) {
  3. super(props);
  4. this.state = {opacity: 1.0};
  5. }
  6. componentDidMount() {
  7. this.timer = setInterval(function () {
  8. var opacity = this.state.opacity;
  9. opacity -= .05;
  10. if (opacity < 0.1) {
  11. opacity = 1.0;
  12. }
  13. this.setState({
  14. opacity: opacity
  15. });
  16. }.bind(this), 100);
  17. }
  18. render () {
  19. return (
  20. <div style={{opacity: this.state.opacity}}>
  21. Hello {this.props.name}
  22. </div>
  23. );
  24. }
  25. }
  26. ReactDOM.render(
  27. <Hello name="world"/>,
  28. document.body
  29. );

以下实例初始化 state , setNewnumber 用于更新 state。所有生命周期在 Content 组件中。

  1. class Button extends React.Component {
  2. constructor(props) {
  3. super(props);
  4. this.state = {data: 0};
  5. this.setNewNumber = this.setNewNumber.bind(this);
  6. }
  7. setNewNumber() {
  8. this.setState({data: this.state.data + 1})
  9. }
  10. render() {
  11. return (
  12. <div>
  13. <button onClick = {this.setNewNumber}>INCREMENT</button>
  14. <Content myNumber = {this.state.data}></Content>
  15. </div>
  16. );
  17. }
  18. }
  19. class Content extends React.Component {
  20. componentWillMount() {
  21. console.log('Component WILL MOUNT!')
  22. }
  23. componentDidMount() {
  24. console.log('Component DID MOUNT!')
  25. }
  26. componentWillReceiveProps(newProps) {
  27. console.log('Component WILL RECEIVE PROPS!')
  28. }
  29. shouldComponentUpdate(newProps, newState) {
  30. return true;
  31. }
  32. componentWillUpdate(nextProps, nextState) {
  33. console.log('Component WILL UPDATE!');
  34. }
  35. componentDidUpdate(prevProps, prevState) {
  36. console.log('Component DID UPDATE!')
  37. }
  38. componentWillUnmount() {
  39. console.log('Component WILL UNMOUNT!')
  40. }
  41. render() {
  42. return (
  43. <div>
  44. <h3>{this.props.myNumber}</h3>
  45. </div>
  46. );
  47. }
  48. }
  49. ReactDOM.render(
  50. <div>
  51. <Button />
  52. </div>,
  53. document.getElementById('root')
  54. );

分类导航