我有一个奇怪的问题。它仅在通过Wifi互联网连接的Android上发生。对我的NodeJs服务器的初始请求最多需要50秒。之后的请求正常工作 设备通过移动互联网发送请求时,不会发生这种情况。在iOS设备上也不会发生这种情况。
使用:
发送请求,例如:
return fetch(`URL`, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
Authorization:
`Bearer ${token}`
}
})
.then((response) => response.json())
.then((json) => {
return json
});