react-native TextInput组件在模拟器Simulator上鼠标聚焦后键盘不弹出
如题,react-native的TextInput组件在模拟器Simulator上鼠标聚焦后键盘不弹出<TextInputstyle={styles.inputItem}onChangeText={text => {const newText = text.rep...
·
如题,react-native的TextInput组件在模拟器Simulator上鼠标聚焦后键盘不弹出
<TextInput
style={styles.inputItem}
onChangeText={text => {
const newText = text.replace(/[^\d]+/, '');
mb(this).setProps({
oaCode: newText.trim()
});
}}
defautValue={oaCode || ''}
placeholder={'请输入手机号码'}
maxLength={11}
keyboardType="number-pad"
returnKeyType="next"
/>
经过排查,是模拟器配置的问题,默认是外接键盘输入,而非模拟器键盘输入。
点击模拟器界面,获得焦点后,点击如下选项切换模拟器自带键盘进行输入!

更多推荐


所有评论(0)