初始化
1、constructor
constructor参数接受两个参数props,context
可以获取到父组件传下来的的props,context,如果想在constructor构造函数内部(注意是内部哦,在组件其他地方是可以直接接收的)使用props或context,则需要传入,并传入super对象。
2、componentWillMount
1)组件刚经历constructor,初始完数据
2)还未进入render,组件还未渲染完成,dom还未渲染
componentWillMount 一般用的比较少,更多的是用在服务端渲染
ajax请求能写在willmount里吗?
1.虽然有些情况下并不会出错,但是如果ajax请求过来的数据是空,那么会影响页面的渲染,可能看到的就是空白。
2.不利于服务端渲染,在同构的情况下,生命周期会到componentwillmount,这样使用ajax就会出错
3、render
render函数会插入jsx生成的dom结构,react会生成一份虚拟dom树,在每一次组件更新时,在此react会通过其diff算法比较更新前后的新旧DOM树,比较以后,找到最小的有差异的DOM节点,并重新渲染
react16中 render函数允许返回一个数组,单个字符串等,不在只限制为一个顶级DOM节点,可以减少很多不必要的div
4、componentDidMount
组件第一次渲染完成,此时dom节点已经生成,可以在这里调用ajax请求,返回数据setState后组件会重新渲染
更新
1、shouldComponentUpdate(nextProps,nextState)
唯一用于控制组件重新渲染的生命周期,由于在react中,setState以后,state发生变化,组件会进入重新渲染的流程,在这里return false可以阻止组件的更新
因为react父组件的重新渲染会导致其所有子组件的重新渲染,这个时候其实我们是不需要所有子组件都跟着重新渲染的,因此需要在子组件的该生命周期中做判断
2、componentWillUpdate(nextProps,nextState)
shouldComponentUpdate返回true以后,组件进入重新渲染的流程,进入componentWillUpdate,这里同样可以拿到nextProps和nextState
3、componentDidUpdate(prevProps,prevState)
组件更新完毕后,react只会在第一次初始化成功会进入componentDidmount,之后每次重新渲染后都会进入这个生命周期,这里可以拿到prevProps和prevState,即更新前的props和state。
4、componentWillReceiveProps(nextProps)
componentWillReceiveProps在接受父组件改变后的props需要重新渲染组件时用到的比较多
它接受一个参数
nextProps
通过对比nextProps和this.props,将nextProps setState为当前组件的state,从而重新渲染组件
卸载
componentWillUnmount
componentWillUnmount也是会经常用到的一个生命周期,初学者可能用到的比较少,但是用好这个确实很重要的哦
1.clear你在组建中所有的setTimeout,setInterval
2.移除所有组建中的监听 removeEventListener
3.也许你会经常遇到这个warning:
Can only update a mounted or mounting component. This usually means you called setState() on an unmounted component.
This is a no-op. Please check the code for the undefined component.
是因为你在组建中的ajax请求返回中setState,而你组件销毁的时候,请求还未完成,因此会报warning,解决办法为
componentDidMount() { this.isMount === true axios.post().then((res) => { this.isMount && this.setState({
// 增加条件ismount为true时 aaa:res }) }) } componentWillUnmount() { this.isMount === false }
️我还很喜欢你、就像sin²x+cos²x始终如一