06 组件学习4

组件的生命周期

组件的生命周期是指组件从被创建到挂载到页面中运行起来,再到组件不用时卸载的过程

只有类组件才有生命周期,函数组件没有

类组件:需要实例化,有生命周期的概念

在这里插入图片描述

原图:https://projects.wojtekmaj.pl/react-lifecycle-methods-diagram/

上图是16后的生命周期一致,16以前的是不一样的

Render阶段:不能包含副作用(例如:发送ajax请求)

在这里插入图片描述

挂载阶段

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-DthIL9dH-1664892499040)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20221004154834342.png)]

class App extends React.Component {
  constructor() {
    super()
    console.log('constructor')
  }
  componentDidMount () {
    console.log('componentDidMount')
  }
  render () {
    console.log('render')
    return (
      <div className="App">
        123
      </div>
    )
  }
}

render节点每次组件变化都会重新执行

class App extends React.Component {
  constructor() {
    super()
    console.log('constructor')
  }
  componentDidMount () {
    console.log('componentDidMount')
  }
  state = {
    count: 0
  }
  clickHandler = () => {
    this.setState({
      count: this.state.count + 1
    })
  }
  render () {
    console.log('render')
    return (
      <div className="App">
        <h1>{this.state.count}</h1>
        <button onClick={this.clickHandler}>点击</button>
      </div>
    )
  }
}

如下:执行了12次render

在这里插入图片描述

componentDidMount阶段:

  componentDidMount () {
    console.log('componentDidMount')
    // 类似于vue的mounted
    // ajax 发送网络请求
  }

更新阶段

在这里插入图片描述

class App extends React.Component {
  constructor() {
    super()
    console.log('constructor')
  }
  componentDidMount () {
    console.log('componentDidMount')
    // 类似于vue的mounted
    // ajax 发送网络请求
  }
  componentDidUpdate () {
    console.log('componentDidUpdate')
  }
  state = {
    count: 0
  }
  clickHandler = () => {
    this.setState({
      count: this.state.count + 1
    })
  }
  render () {
    console.log('render')
    return (
      <div className="App">
        <h1>{this.state.count}</h1>
        <button onClick={this.clickHandler}>点击</button>
      </div>
    )
  }
}

执行结果:

在这里插入图片描述

卸载阶段

在这里插入图片描述

例如:

class Test extends React.Component {
  // 卸载阶段
  componentWillUnmount () {
    console.log('test componentWillUnmount')
    // 清理定时器
  }
  render () {
    return (
      <div>
        this is test
      </div>
    )
  }
}

class App extends React.Component {
  constructor() {
    super()
    console.log('constructor')
  }
  componentDidMount () {
    console.log('componentDidMount')
    // 类似于vue的mounted
    // ajax 发送网络请求
  }
  componentDidUpdate () {
    console.log('componentDidUpdate')
  }
  state = {
    count: 0,
    flag: true
  }
  clickHandler = () => {
    this.setState({
      count: this.state.count + 1,
      flag: !this.state.flag
    })
  }
  render () {
    console.log('render')
    return (
      <div className="App">
        <h1>{this.state.count}</h1>
        <button onClick={this.clickHandler}>点击</button>
        {this.state.flag ? <Test /> : null}
      </div>
    )
  }
}

结果如下:

在这里插入图片描述

可见三元运算符,每次都会卸载,然后重新渲染

  // 如果数据是组件的状态需要去影响视图,定义到state中
  // 如果我们需要的数据状态不和视图绑定,定义成一个普通的实例属性
  // state尽量保持精简
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值