vue中获取Error: timeout of 50ms exceeded

  • 现象:
    vue中获取Error: timeout of 50ms exceeded_第1张图片
  • 解决
    1.axios请求超时,返回的error是一个对象,用typeof检测是object,error对象的具体内容如下图:
    2.如何得到 timeout of …,用返回的对象调用message即可,例如error.message
    3.axios.defaults.timeout = 50; // 超时时间(在拦截器中统一设置超时时间)
    4.具体如何设置请求时间点击此处
    vue中获取Error: timeout of 50ms exceeded_第2张图片
    其他时候的错误处理:
 .catch(function (error) {
    if (error.response) {
      // 请求已发出,但服务器响应的状态码不在 2xx 范围内
      console.log(error.response.data);
      console.log(error.response.status);
      console.log(error.response.headers);
    } else {
      // Something happened in setting up the request that triggered an Error
      console.log('Error', error.message);
    }
    console.log(error.config);
  });

你可能感兴趣的:(前端,vue)