axios 里面默认超时时间是不是1000?

发布于 2022-09-11 15:04:11 字数 356 浏览 19 评论 0

看axios的官方文档,
链接:
https://www.kancloud.cn/yunye...

发现它里面并没有说明默认超时时间是多长,之前也没注意到这个问题。文档里面只有:

clipboard.png
请问各位:axios的默认超时时间是1000吗?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

叫嚣ゝ 2022-09-18 15:04:11

看英文原版文档吧
中文没翻译完整
https://github.com/axios/axios

  // `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)
逆光飞翔i 2022-09-18 15:04:11

这个超时时间是以XMLHttpRequest的默认超时时间为准的,而它的超时时间我没猜错的话,是以tcp的超时时间来算的

面如桃花 2022-09-18 15:04:11

无语,这是哪门子官方文档?
https://github.com/axios/axios

  // `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)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文