constructor(props){ super(props); this.state = {text:'125'}; } render(){ return( <View> <Button title='状态' onPress={()=>{ this.setState({text:'7777'}); alert(this.state.text) }}></Button> </View> ); }原文链接:https://www.f2er.com/react/303006.html
constructor(props){ super(props); this.state = {text:'125'}; } render(){ return( <View> <Button title='状态' onPress={()=>{ this.setState({text:'7777'}); alert(this.state.text) }}></Button> </View> ); }原文链接:https://www.f2er.com/react/303006.html