Axios默认超时是什么

qmb5sa22  于 2022-11-23  发布在  iOS
关注(0)|答案(1)|浏览(232)

我在文档中找到了设置超时值的步骤。

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分钟后超时。

wlp8pajw

wlp8pajw1#

根据README,它是0,表示没有超时

// `timeout` specifies the number of milliseconds before the request times out.
// If the request takes longer than `timeout`, the request will be aborted.
timeout: 1000, // default is `0` (no timeout)

https://github.com/axios/axios/blob/master/README.md#request-config

相关问题