首頁 > 軟體

React 元件的常用生命週期函數彙總

2022-08-15 18:07:30

1. 概述

  • 意義:元件的生命週期有助於理解元件的執行方式、完成更復雜的元件功能、分析元件錯誤原因等。
  • 元件的生命週期:元件從被建立到掛載到頁面中執行,再到元件不用時解除安裝的過程。
  • 生命週期的每個階段總是伴隨著一些方法呼叫,這些方法就是生命週期的勾點函數。
  • 勾點函數的作用:為開發人員在不同階段操作元件提供了時機。
  • 只有類元件才有生命週期。

2. 生命週期的三個階段

  • 每個階段的執行時機
  • 每個階段勾點函數的執行順序
  • 每個階段勾點函數的作用

2.1. 建立時(掛載階段)

  • 執行時機:元件建立時(頁面載入時)
  • 執行順序:constructor() -> render() -> componentDidMount()
  • 勾點函數的作用:
勾點函數觸發時機作用
constructor建立元件時,最先執行1.初始化state 2.為事件處理程式繫結 this
render每次元件渲染都會觸發渲染 UI (注意:不能呼叫setState())
componentDidMount元件掛載(完成 DOM 渲染)後1.傳送網路請求 2.DOM 操作
// 匯入ract
import React from 'react'
import ReactDOM from 'react-dom'

class App extends React.Component {
  constructor(props) {
    super(props)

    // 1.初始化state
    this.state = {
      count: 0
    }

    // 2.解決事件處理程式this指向問題
    this.handleClick = this.handleClick.bind(this)

    console.warn('生命週期勾點函數:constructor')
  }
  componentDidMount() {
    // 1.傳送ajax請求,獲取遠端資料
    // axios.get('http://api....')

    // 2.進行DOM操作
    const title = document.getElementById('title')
    console.log(title)

    console.warn('生命週期勾點函數:componentDidMount')
  }

  // 事件處理程式
  handleClick() {
    this.setState({
      count: 1
    })
  }

  render() {
    console.warn('生命週期勾點函數:render')

    // 錯誤演示(不能呼叫setState())
    // this.setState({
    //   count: 2
    // })

    return (
      <div>
        <h1 id='title'>統計豆豆被打的次數:{this.state.count}</h1>
        <button id='btn' onClick={this.handleClick}>打豆豆</button>
      </div>
    )
  }
}
ReactDOM.render(<App />, document.getElementById('root'))

2.2. 更新時(更新階段)

  • 執行時機:setState()、forceUpdate()、元件接收到新的props。
  • 說明:以上任意一種變化,元件就會重新渲染。
  • 執行順序:render() -> componentDidUpdate()
勾點函數觸發時機作用
render每次元件渲染都會觸發渲染 UI (與掛載階段是同一個render)
componentDidUpdate元件更新(完成 DOM 渲染)後1.傳送網路請求 2.DOM 操作 注意:如果要 setState() 必須放在一個if條件中
// 匯入ract
import React from 'react'
import ReactDOM from 'react-dom'

// 父元件
class App extends React.Component {
  constructor(props) {
    super(props)

    this.state = {
      count: 0
    }
  }

  // 事件處理程式
  handleClick = () => {
    // 執行時機:setState()
    this.setState({
      count: this.state.count + 1
    })

    // 執行時機:強制更新
    // this.forceUpdate()
  }

  render() {
    return (
      <div>
        {/* 執行時機:元件接收到新的props */}
        <ShowCount count={this.state.count} />
        <button onClick={this.handleClick}>打豆豆</button>
      </div>
    )
  }
}

// 子元件
class ShowCount extends React.Component {
  render() {
    console.warn('元件ShowCount的生命週期勾點函數:render')
    return (<h1 id='title'>統計豆豆被打的次數:{this.props.count}</h1>)
  }

  // 注意:如果要呼叫 setState() 更新狀態,必須要放在一個 if 條件中
  // 因為:如果直接呼叫 setState(),也會導致遞迴更新!!!
  componentDidUpdate(prevProps) {
    // componentDidUpdate的作用:獲取DOM
    const title = document.getElementById('title')
    console.log(title)

    // 正確做法:比較更新前後的props是否相同,來決定是否重新渲染元件
    console.log('上一次的props:', prevProps, ',當前的props:', this.props)
    if (prevProps.count !== this.props.count) {
      this.setState({})

      // componentDidUpdate的作用:傳送ajax請求資料
      // axios.get('http://api....')
    }

    // 錯誤演示
    // this.setState({})

    console.warn('元件ShowCount的生命週期勾點函數:componentDidUpdate')
  }
}
ReactDOM.render(<App />, document.getElementById('root'))

2.3. 解除安裝時(解除安裝階段)

執行時機:元件從頁面中消失

勾點函數觸發時機作用
componentWillUnmount元件解除安裝(從頁面中消失)執行清理工作(比如:清理定時器等)
// 匯入ract
import React from 'react'
import ReactDOM from 'react-dom'

// 父元件
class App extends React.Component {
  constructor(props) {
    super(props)

    this.state = {
      count: 0
    }
  }

  // 事件處理程式
  handleClick = () => {
    this.setState({
      count: this.state.count + 1
    })
  }

  render() {
    return (
      <div>
        {
          this.state.count > 5 ? <p>豆豆被打死了</p> : <ShowCount count={this.state.count} />
        }
        <button onClick={this.handleClick}>打豆豆</button>
      </div>
    )
  }
}

// 子元件
class ShowCount extends React.Component {
  componentDidMount() {
    this.timerId = setInterval(() => {
      console.log('定時器正在執行~')
    }, 500)
  }

  render() {
    return (<h1 id='title'>統計豆豆被打的次數:{this.props.count}</h1>)
  }

  componentWillUnmount() {
    console.warn('元件ShowCount的生命週期勾點函數:componentWillUnmount')

    // 清理定時器
    clearInterval(this.timerId)
  }

}
ReactDOM.render(<App />, document.getElementById('root'))

到此這篇關於React 元件的常用生命週期函數彙總的文章就介紹到這了,更多相關React 元件生命週期函數內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com