gpt4 book ai didi

android - 在 android 上使用状态时 react native textInput 中的错误

转载 作者:行者123 更新时间:2023-11-29 18:32:12 25 4
gpt4 key购买 nike

此错误仅存在于 Android 上。

如果我在 Android 上有一个 textInput 并将值设置为状态。然后在其他地方我更改值,当我在 textInput 上使用 onChange 时,它​​使用旧文本值而不是新状态。

这是我的零食 https://snack.expo.io/SyV1mkIc4

下面是显示它不起作用的完整代码

    import * as React from 'react';
import { Text, View, StyleSheet, TextInput, TouchableOpacity } from 'react-native';
import { Constants } from 'expo';

// You can import from local files
import AssetExample from './components/AssetExample';

// or any pure javascript modules available in npm
import { Card } from 'react-native-paper';

export default class App extends React.Component {
constructor(props) {
super(props)
this.state = {
text: 'aaa'
}
}
render() {
return (
<View style={styles.container}>
<TextInput
value={this.state.text}
onChange={(event) => this.setState({
text: event.text,
})}
/>
<TouchableOpacity
onPress={()=>this.setState({
text: "",
})}
style={styles.submit}
>
</TouchableOpacity>
</View>
);
}
}

const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
paddingTop: Constants.statusBarHeight,
backgroundColor: '#ecf0f1',
padding: 8,
},
submit: {
height: 200,
width: 200,
backgroundColor: 'blue',
textAlign: 'center',
},
});

最佳答案

改用onChangeText

onChangeText={(text)=>{this.setState({text});}}

关于android - 在 android 上使用状态时 react native textInput 中的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55745333/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com