我正在EXPO客户端上运行我的React本机代码。例如,当我尝试从 google.com 获取信息时,我会得到
“ TypeError:网络请求失败”
错误。
我的设备上有互联网。 此错误消息没有意义。我怎么能理解下面的真正问题。
static test(provider, token, success, error) {
console.log(1); // TODO: remove
fetch("https://wwww.google.com", {
method: "GET",
})
.then(response => {
console.log(2); // TODO: remove
if (response.ok) {
success(response);
} else {
error(response);
}
}).catch(e => {
console.log("RestService Error: " + e);
});
}
更新: 添加了小吃。