调用setState()函数会发生什么?
该setState()
功能运行什么?它只会运行render()
吗?
回答:
setState()将按以下顺序运行函数:
shouldComponentUpdate()
componentWillUpdate()
render()
componentDidUpdate()
如果您的组件正在接收道具,它将componentWillRecieveProps()
使用上述功能运行该功能。
以上是 调用setState()函数会发生什么? 的全部内容, 来源链接: utcz.com/qa/417820.html