浅谈Axios去除重复请求方案
时间:2022-01-03 12:04:01|栏目:JavaScript代码|点击: 次
此方案主要有两个功能
1.请求发出后,后续重复请求取消不处理,等待第一次请求完成。
2.路由跳转后,上一个页面未完成请求全部清理。
一、取消重复请求
前置知识:
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() })
上一篇:简单实现js上传文件功能
栏 目:JavaScript代码
本文标题:浅谈Axios去除重复请求方案
本文地址:http://www.codeinn.net/misctech/189018.html