Taro+react开发(23)--componentWillReceiveProps
Posted 小歌谣(公众号同名)
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Taro+react开发(23)--componentWillReceiveProps相关的知识,希望对你有一定的参考价值。
componentWillReceiveProps#
void componentWillReceiveProps(
object nextProps
)
当props发生变化时执行,初始化render时不执行,
在这个回调函数里面,你可以根据属性的变化,通过调用this.setState()
来更新你的组件状态,旧的属性还是可以通过this.props来获取,这里调用更新状态是安全的,
并不会触发额外的render调用
componentWillReceiveProps: function(nextProps) {
this.setState({
likesIncreasing: nextProps.likeCount > this.props.likeCount
});
以上是关于Taro+react开发(23)--componentWillReceiveProps的主要内容,如果未能解决你的问题,请参考以下文章