解決axios:"timeout of 5000ms exceeded"超時的問題
axios:"timeout of 5000ms exceeded"超時
最近遇到一個問題,在我開機(jī)后,啟動后臺服務(wù)器登錄程序時會報請求超時的問題。網(wǎng)上找了下解決方法,最后成功解決。
首先,我們要查看自己的請求地址是否正確,后端是否正常開啟,數(shù)據(jù)庫是否啟動;若都正確無誤,則繼續(xù)往下看。
在看以下代碼時,大家可以參考我的另一篇文章:vue開發(fā)中 axios 的封裝
注:我使用的是 0.18.1 版本,0.19.0 版本似乎有問題,見:https://github.com/ly2011/blog/issues/159 中的評論。
具體代碼如下:
import axios from 'axios' import { BASE_URL } from './http' import router from '../router' ? // create an axios instance const service = axios.create({ ? baseURL: BASE_URL, // url = base url + request url ? // withCredentials: true, // send cookies when cross-domain requests ? timeout: 5000 // request timeout }) ? ? // 設(shè)置請求次數(shù),請求的間隙 service.defaults.retry = 4; service.defaults.retryDelay = 1000; ? // request interceptor service.interceptors.request.use( ? config => { ? ? // do something before request is sent ? ? return config ? }, ? error => { ? ? // do something with request error ? ? // console.log(error) // for debug ? ? return Promise.reject(error) ? } ) ? // response interceptor service.interceptors.response.use( ? response => { ? ? const res = response.data ? ? return res ? }, ? error => { ? ? if (error.response) { ? ? ? // console.log('err' + error) // for debug ? ? ? switch (error.response.status) { ? ? ? ? case 401: ? ? ? ? ? // console.log('err status' + error.response.status) ? ? ? ? ? router.push('/login') ? ? ? ? ? break ? ? ? ? case 404: ? ? ? ? ? break ? ? ? ? case 500: ? ? ? ? ? break ? ? ? } ? ? ? return Promise.reject(error) ? ? } else { ? ? ? // 處理超時的情況 ? ? ? let config = error.config ? ? ? // If config does not exist or the retry option is not set, reject ? ? ? if(!config || !config.retry) return Promise.reject(error) ?? ? ? ? // Set the variable for keeping track of the retry count ? ? ? config.__retryCount = config.__retryCount || 0 ?? ? ? ? // Check if we've maxed out the total number of retries ? ? ? if(config.__retryCount >= config.retry) { ? ? ? ? // Reject with the error ? ? ? ? return Promise.reject(error) ? ? ? } ?? ? ? ? // Increase the retry count ? ? ? config.__retryCount += 1 ?? ? ? ? // Create new promise to handle exponential backoff ? ? ? let backoff = new Promise(function(resolve) { ? ? ? ? setTimeout(function() { ? ? ? ? ? resolve() ? ? ? ? }, config.retryDelay || 1) ? ? ? }) ?? ? ? ? // Return the promise in which recalls axios to retry the request ? ? ? return backoff.then(function() { ? ? ? ? return service(config) ? ? ? }) ? ? } ? ? } ) ? export default service
當(dāng)請求超時后,axios 將重新發(fā)起請求,請求次數(shù)和間隙可以自己設(shè)定。
這里我創(chuàng)建了一個 axios 實例,所有 api 接口都通過這個實例進(jìn)行請求。
如果你不想這樣做,可以像下面這樣寫:
//在main.js設(shè)置全局的請求次數(shù),請求的間隙 axios.defaults.retry = 4; axios.defaults.retryDelay = 1000; ? axios.interceptors.response.use(undefined, function axiosRetryInterceptor(err) { ? ? var config = err.config; ? ? // If config does not exist or the retry option is not set, reject ? ? if(!config || !config.retry) return Promise.reject(err); ? ? ? // Set the variable for keeping track of the retry count ? ? config.__retryCount = config.__retryCount || 0; ? ? ? // Check if we've maxed out the total number of retries ? ? if(config.__retryCount >= config.retry) { ? ? ? ? // Reject with the error ? ? ? ? return Promise.reject(err); ? ? } ? ? ? // Increase the retry count ? ? config.__retryCount += 1; ? ? ? // Create new promise to handle exponential backoff ? ? var backoff = new Promise(function(resolve) { ? ? ? ? setTimeout(function() { ? ? ? ? ? ? resolve(); ? ? ? ? }, config.retryDelay || 1); ? ? }); ? ? ? // Return the promise in which recalls axios to retry the request ? ? return backoff.then(function() { ? ? ? ? return axios(config); ? ? }); });
參考鏈接:https://github.com/axios/axios/issues/164
報錯 Error: timeout of 5000ms exceeded
在確定后端代碼沒有問題,鎖定前端
修改 \src\utils 目錄下的 request.js
修改timeout屬性值
有需要以后再來優(yōu)化
以上為個人經(jīng)驗,希望能給大家一個參考,也希望大家多多支持腳本之家。
相關(guān)文章
vue3組合式api實現(xiàn)v-lazy圖片懶加載的方法實例
vue作為前端主流的3大框架之一,目前在國內(nèi)有著非常廣泛的應(yīng)用,下面這篇文章主要給大家介紹了關(guān)于vue3組合式api實現(xiàn)v-lazy圖片懶加載的相關(guān)資料,需要的朋友可以參考下2022-09-09vue.js+Echarts開發(fā)圖表放大縮小功能實例
本篇文章主要介紹了vue.js+Echarts開發(fā)圖表放大縮小功能實例,具有一定的參考價值,感興趣的小伙伴們可以參考一下2017-06-06vue項目持久化存儲數(shù)據(jù)的實現(xiàn)代碼
這篇文章主要介紹了vue項目持久化存儲數(shù)據(jù)的實現(xiàn)代碼,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2018-10-10