react-native setState无法保持更新

Posted httpl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react-native setState无法保持更新相关的知识,希望对你有一定的参考价值。

常用的数据更新赋值在this.state.xxx= xxx
如果保持数据更新放置与
this.setState({
xxx:xxx
})
有时我们需要setState之后立马要用state更新的数据,就在回调里用。例如:
this.setState({type:index+1},()=>{console.log(this.state.type)})
这样我们就可以拿到自己想要的数据

以上是关于react-native setState无法保持更新的主要内容,如果未能解决你的问题,请参考以下文章

react-native如何看待 this.setState()

react-native this.setState 导致代码停止运行

this.setState 不适用于 react-native 中的多个文本输入

react-native:使用asState / await和setState

无法更新状态 - react-native

ComponentDidMount 中调用的 setState 没有更新状态? [复制]