Taro+react开发(45)taro中组件生命周期
Posted 小歌谣(公众号同名)
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Taro+react开发(45)taro中组件生命周期相关的知识,希望对你有一定的参考价值。
组件生命周期#
每一个组件都有几个你可以重写以让代码在处理环节的特定时期运行的“生命周期方法”。方法中带有前缀 will 的在特定环节之前被调用,而带有前缀 did 的方法则会在特定环节之后被调用。
装载(Mounting)#
这些方法会在组件实例被创建和插入 DOM 中时被调用:
constructor()
componentWillMount()
render()
componentDidMount()
更新(Updating)#
属性或状态的改变会触发一次更新。当一个组件在被重新渲染时,这些方法将会被调用:
componentWillReceiveProps()
shouldComponentUpdate()
componentWillUpdate()
render()
componentDidUpdate()
卸载(Unmounting)#
当一个组件被从 DOM 中移除时,该方法被调用:
componentWillUnmount()
其他 API#
每一个组件还提供了其他的 API:
setState()
forceUpdate()
以上是关于Taro+react开发(45)taro中组件生命周期的主要内容,如果未能解决你的问题,请参考以下文章
Taro+react开发(78):taro生命周期render
Taro+react开发(79):taro生命周期setstate异步
Taro+react开发(79):taro生命周期setstate异步
Taro+react开发(71):Taro.nextTick