gpt4 book ai didi

android - Alert.alert 在 React native iOS 中不起作用,但在 Android 中完全正常

转载 作者:行者123 更新时间:2023-12-04 23:56:32 32 4
gpt4 key购买 nike

请检查代码,

import { 
Alert,
} from 'react-native';

checkForSendingOtp = () => {
let hash = 'aBcDeGgd';
Platform.OS === 'android'
? RNOtpVerify.getHash()
.then(text => {
hash = text + ''.replace('[', '');
hash = hash + ''.replace(']', '');
})
.then(() => {
this.sendDataForOtp(hash);
})
.catch(console.log)
: this.sendDataForOtp(hash);
};

sendDataForOtp(hash) {

axios.post(url,{hash:hash}).then(response=>{
Alert.alert(
'Login Failed',
'Multiple Logins Are Found. \n Logout From All Other Devices to Continue.',
[
{
text: 'Proceed ?',
onPress: () => {}
},
{
text: 'No',
onPress: () => {},
},
],
{cancelable: false},
);
});
}


render() {
return (
<Ripple
style={{
position: 'absolute',
top: 0,
bottom: 0,
left: 0,
right: 0,
}}
onPress={this.checkForSendingOtp}
/>
)}

此代码段在 Android 中可以正常工作,但不会在 iOS 中显示。为什么?

Nb :- 这是我现在可以分享的大部分代码,已编辑代码,请立即检查,如果您有任何问题,请告诉我。

最佳答案

我不完全知道发生了什么,还有一个模型组件,我用来显示自定义加载,删除模型组件后,警报开始工作。

关于android - Alert.alert 在 React native iOS 中不起作用,但在 Android 中完全正常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60559659/

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