Fork me on GitHub
秋染蒹葭

react深入理解之三:react的生命周期

react中的生命周期

  • getDefaultProps
  • getInitialState
  • componentWillMount(页面初始化的时候)
  • render(必须要有)
  • componentDidMount
  • componentWillReceiveProps
  • shouldComponentUpdate(this.setState)
  • componentWillUpdate
  • componentDidUpdate
  • componentWillUnmount

可以使用下述代码测试生命周期

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import React from 'react'
export default class Child extends React.Component {
constructor(props) {
super(props)
this.state = {
count: 0
}
}
componentWillMount() {
console.log('will mount')
}
componentDidMount() {
console.log('did mount')
}
componentWillReceiveProps(newProps) {
console.log('will props:' + newProps.count)
}
shouldComponentUpdate() {
console.log('should update')
return true
}
componentWillUpdate() {
console.log('will update')
}
componentDidUpdate() {
console.log('did update')
}
render() {
return (
<div>
<p>这里是子组件</p>
<p>{this.props.count}</p>
</div>
)
}
}

参考资料

本文标题:react深入理解之三:react的生命周期

文章作者:zhyjor

发布时间:2018年10月16日 - 17:10

最后更新:2023年10月11日 - 02:10

原始链接:https://zhyjor.github.io/2018/10/16/react深入理解之三:react的生命周期/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。

🐶 您的支持将鼓励我继续创作 🐶

热评文章