尝试通过带有 axios 的 react-native 下的 https POST 请求创建用户帐户,而它在 android 上总是失败并出现“网络错误”。
axios('https://'+DEST_URI, {
method: 'post',
data: account,
headers: {
'Accept': 'application/json',
}
then(...)
相同的 https POST 请求在 iOS 上运行良好。
更改为 http,同样的 POST 请求也适用于 android。
还尝试了通过 android 上的 https 获取请求,它可以按预期从后端服务器检索数据。
有什么想法吗?
链接图像是控制台日志的输出,控制台日志的 输出