我正在使用 axios 进行来自 reactjs 框架的 api 调用。通过 axios,我在 20 秒内得到响应,但是当我从邮递员发出相同的请求时,它会在 6 秒内给出响应。
我使用 fetch 尝试了相同的请求,它也需要大约 20 秒
axios.post(URL, reqObject, {
headers: {
'Access-Control-Allow-Origin': '*',
'Authorization': 'Bearer '.concat(AccessToken)
},
}
).then(function (response) {
console.log(" axios APi call response ", response.data.value)
}).catch(function (error) {
console.log(" error error");
console.log(error);
});