您好,登錄后才能下訂單哦!
小編給大家分享一下Axios如何去除重復請求,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
前置知識:
1.axios官方提供的取消方法,可以查閱相關文檔:CancelToken
2.js Map相關概念
3.安全的查詢字符串解析和字符串分解庫 qs,功能類似js自帶的JSON
為簡化參數處理,本方案只考慮post請求,也就是如果method,url以及data相同則視為重復請求
// axios.js const pending = new Map() /** * 添加請求 * @param {Object} config **/ const addPending = (config) => { const url = [ config.method, config.url, qs.stringify(config.data) ].join('&') if (pending.has(url)) { // 如果 pending 中存在當前請求則取消后面的請求 config.cancelToken = new axios.CancelToken(cancel => cancel(`重復的請求被主動攔截: ${url}`)) } else { // 如果 pending 中不存在當前請求,則添加進去 config.cancelToken = config.cancelToken || new axios.CancelToken(cancel => { pending.set(url, cancel) }) } } /** * 移除請求 * @param {Object} config */ const removePending = (config) => { const url = [ config.method, config.url.replace(config.baseURL, ''), // 響應url會添加域名,需要去掉與請求URL保持一致 qs.stringify(JSON.parse(config.data)) // 需要與request的參數結構保持一致,request中是對象,response中是字符串 ].join('&') if (pending.has(url)) { // 如果在 pending 中存在當前請求標識,取消當前請求,并且移除 pending.delete(url) } } /* axios全局請求參數設置,請求攔截器 */ axios.interceptors.request.use( config => { addPending(config) // 將當前請求添加到 pending 中 return config }, error => { return Promise.reject(error) } ) // 響應攔截器即異常處理 axios.interceptors.response.use( response => { removePending(response.config) // 在請求結束后,移除本次請求 return response }, err => { if (err && err.config) { removePending(err.config) // 在請求結束后,移除本次請求 } return Promise.resolve(err.response) } )
// axios.js /** * 清空 pending 中的請求(在路由跳轉時調用) */ export const clearPending = () => { for (const [url, cancel] of pending) { cancel(url) } pending.clear() }
// router.js router.beforeEach((to, from, next) => { // 路由跳轉,清除所有請求 clearPending() })
以上是“Axios如何去除重復請求”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。