这一部分内容一直一知半解,最近发现一篇文章,非常好的解释了生命周期的问题,留存在这里,以备后查!
简介
一个react的组件Component在浏览器中可以是下面三种状态中的任意一种:Mounting(挂载)、Update(更新)、Unmounted(卸载)
这三种状态有分别对应的钩子方法,具体分类如下:
下面内容将对三种状态的钩子们进行分别注解。
Mounting(挂载)
1. 初始化state
- 通常在ES6中,使用
constructor()
中初始化state。
const tom_and_jerry = [
{
name: 'Tom',
score: 55
},
{
name: 'Jerry',
score: 80
}
];
class ScoreBoard extends React.Component {
constructor(props) {
super(props);
this.state = { players: tom_and_jerry }
}
// ...
}
- 当然,你也可以使用ES5方法
getInitialState()
,当然你要确保使用对了地方。
var ScoreBoard = React.createClass({
getInitialState: function() {
return {
players: tom_and_jerry
}
},
// ...
});
2. Default props(不常用啊)
如果父组件没有定义props
的值,你可以定义默认的props
值。
ES7写法:
class SinglePlayer extends React.Component {
static defaultProps = {
name: 'Nobody',
score: 0
}
// ...
}
ES6写法:
class SinglePlayer extends React.Component {
// ...
}
SinglePlayer.defaultProps = {
name: 'Nobody',
score: 0
}
ES5写法——自己定义getDefaultProps()方法:
var SinglePlayer = React.createClass({
getDefaultProps: function() {
return {
name: 'Nobody',
score: 0
}
}
});
在组件创建实例之前,getDefaultProps()方法只能被调用一次。因此应避免在该钩子里使用this.props
。
3. componentWillMount()
该方法只在第一次渲染(render)前被加载一次,它也是一个放置初始化state值的好地方。
class SinglePlayer extends React.Component {
componentWillMount() {
this.setState({
isPassed: this.props.score >= 60
});
alert('componentWillMount => ' + this.props.name);
console.log('componentWillMount => ' + this.props.name);
}
// ...
}
4. componentDidMount()
该方法将在每次渲染之后被执行,它也是访问DOM组件的好地方。
class ScoreBoard extends React.Component {
constructor(props) {
super(props);
this._handleScroll = this.handleScroll.bind(this);
}
handleScroll() {}
componentDidMount() {
alert('componentDidMount in NoticeBoard');
window.addEventListener('scroll', this._handleScroll);
}
// ...
}
因为每次渲染之后都会自动调用这个钩子,因此如果有哪些需要每次重新渲染都要调用的函数等都可以放在这里。
Updating(更新)
1. componentWillReceiveProps()
当一个组件正在接收新的props时,它将被调用。但是它不会在初次页面渲染(render)时被调用。
class SinglePlayer extends React.Component {
componentWillReceiveProps(nextProps) {
// Calculate state according to props changes
this.setState({
isPassed: nextProps.score >= 60
});
}
}
在该钩子中,旧的porps
可以通过this.props
获得。在通常情况下,你可以根据改变的props
来设置state
。
2. shouldComponentUpdate()
该钩子返回的是布尔值。当一个新的props
或者state
正在被接收时,该钩子会在页面渲染(render)前被调用。当然它也不会在初次页面渲染(render)时被调用。
该钩子默认返回true
。该钩子可以阻止不必要的重复渲染页面,以便提高性能。只需要让shouldComponentUpdate()
返回false
,那么组件的render()
将被完全忽略,知道下一次props
或state
发生改变。
class SinglePlayer extends React.Component {
shouldComponentUpdate(nextProps, nextState) {
// Don't rerender if score doesn't change,
if ( nextProps.score == this.props.score ) {
return false;
}
return true;
}
}
3. componentWillUpdate()
该钩子在shouldComponentUpdate()
钩子之后(返回true
),render()
之前调用,当然它也不会在初次页面渲染(render)时被调用。
该钩子的作用是为更新做准备。
class SinglePlayer extends React.Component {
componentWillUpdate(nextProps, nextState) {
alert('componentWillUpdate => ' + this.props.name);
console.log('componentWillUpdate => ' + this.props.name);
}
}
4. componentDidUpdate()
调用组件的更新后立即刷新到DOM。当然它也不会在初次页面渲染(render)时被调用。
您可以执行的DOM操作后更新在这个函数。
class SinglePlayer extends React.Component {
componentDidUpdate(prevProps, prevState) {
alert('componentDidUpdate => ' + this.props.name);
console.log('componentDidUpdate => ' + this.props.name);
}
}
Unmounting(卸载)
1. componentWillUnmount()
这是前一个组件调用卸载或删除从DOM。
用这个作为一个机会来执行清理操作。例如,解开事件监听器来避免内存泄漏。
class ScoreBoard extends React.Component {
componentWillUnmount() {
window.removeEventListener('scroll', this._handleScroll);
}
}
完整例子
React Component Lifecycle Demo
总结一下
-
MOUNTING
-
constructor( )
——初始化props和state。 -
componentWillMount( )
——我要插入啦! -
render( )
——将render里的return的内容插入到页面中。 -
componentDidMount( )
——插入之后要做的事情。
-
MOUNTING之后,有任何的数据变动,就会进行到UPDATE过程,尤其是setState( ):
- UPDATING
-
componentWillReceiveProps(nextProps)
——我要读取props啦! -
shouldComponentUpdate(nextProps,nextState)
——请问要不要更新组件?只需要回答我true
或者false
就可以了。 -
render( )
——更新! -
componentDidUpdate( )
——更新完毕了!
-
当一个组件将要从页面中移除时,就会进入UNMOUNT过程:
-
UNMOUNT
-
componentWillUnmount( )
——我要死了!
-
TIP
setState( )
一般只在下面几个钩子里使用:
componentWillMount( )
componentDidMount( )
componentWillReceiveProps( )
setState( )
会自动调用componentDidUpdate( )
钩子重新渲染页面的,具体关于它的详参这篇文章。
生命周期原文章链接,点击这里 <===
THE END