登录
首页 >  数据库 >  Redis

React 组件的常用生命周期函数汇总

来源:脚本之家

时间:2023-02-24 21:26:06 344浏览 收藏

本篇文章向大家介绍《React 组件的常用生命周期函数汇总》,主要包括函数、React组件、生命、周期,具有一定的参考价值,需要的朋友可以参考一下。

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 (
      

统计豆豆被打的次数:{this.state.count}

) } } ReactDOM.render(, 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 (
      
{/* 执行时机:组件接收到新的props */}
) } } // 子组件 class ShowCount extends React.Component { render() { console.warn('组件ShowCount的生命周期钩子函数:render') return (

统计豆豆被打的次数:{this.props.count}

) } // 注意:如果要调用 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(, 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 (
      
{ this.state.count > 5 ?

豆豆被打死了

: }
) } } // 子组件 class ShowCount extends React.Component { componentDidMount() { this.timerId = setInterval(() => { console.log('定时器正在执行~') }, 500) } render() { return (

统计豆豆被打的次数:{this.props.count}

) } componentWillUnmount() { console.warn('组件ShowCount的生命周期钩子函数:componentWillUnmount') // 清理定时器 clearInterval(this.timerId) } } ReactDOM.render(, document.getElementById('root'))

以上就是《React 组件的常用生命周期函数汇总》的详细内容,更多关于redis的资料请关注golang学习网公众号!

声明:本文转载于:脚本之家 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>