我在文档中找到了设置超时值的步骤。
const instance = axios.create({
baseURL: 'https://some-domain.com/api/',
timeout: 1000,
headers: {'X-Custom-Header': 'foobar'}
});
但是我在axios官方文档中找不到默认值-https://github.com/axios/axios
默认超时是什么?
此外,在AXIOS之下使用http服务器/客户端(https://nodejs.org/api/http.html#http_class_http_clientrequest)
它是否使用http默认超时?我看到我的程序在2分钟后超时。
1条答案
按热度按时间wlp8pajw1#
根据README,它是0,表示没有超时
https://github.com/axios/axios/blob/master/README.md#request-config