当前位置:   article > 正文

前端请求超时截断,axios timeout设置未生效情况记录

前端请求超时截断,axios timeout设置未生效情况记录

问题描述

前端请求超时截断,axios timeout设置未生效情况记录

timeout设置方式:

表现(前端超过5min报错500,直接访问接口超过5min能够正常响应):

问题原因

上面的配置设置时间为1000min,明显配置没有生效

解决方式

1、修改axios的默认配置,这里修改为10min

  1. axios.defaults.timeout = 10 * 60 * 1000;
  2. const res: any = await axios.post(smarturl, req_body, {
  3. headers: {'Content-Type': 'application/json'},
  4. });

2、重写axios方法,这里修改为10min

  1. const HTTP_AXIOS = axios.create();
  2. HTTP_AXIOS ({
  3. method: 'post',
  4. url: smarturl,
  5. data: req_body,
  6. timeout: 10 * 60 * 1000,
  7. }).then(reqres => {
  8. if (reqres) {
  9. //请求成功后返回的参数
  10. console.log('res', reqres);
  11. }
  12. }).catch(error => {
  13. if (error.config.timeout == 3000) {
  14. message.error('请求超时,请检查网络')
  15. } else {
  16. console.log('timeout-error', error)
  17. }
  18. })

生效效果:

默认配置不再是5min,超过5min请求未被截断

本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号