vue axios 封装(三)
封装三:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 | import axios from 'axios' import { Message, MessageBox } from 'element-ui' import store from '../store' import { getToken } from '@/utils/auth' // 创建axios实例 const service = axios.create({ baseURL: process.env.BASE_API, // api的base_url timeout: 10000 // 请求超时时间 }) // request拦截器 service.interceptors.request.use(config => { // console.log('store.getters.token', getToken()) if (store.getters.token) { // console.log('tag9528', 'bearer ' + getToken()) config.headers[ 'Authorization' ] = 'bearer ' + getToken() // 让每个请求携带自定义token 请根据实际情况自行修改 } else if (getToken()) { config.headers[ 'Authorization' ] = 'bearer ' + getToken() // 让每个请求携带自定义token 请根据实际情况自行修改 } return config }, error => { // Do something with request error // console.log(error) // for debug Promise.reject(error) }) // service.interceptors.request.use(config => { // if (store.getters.token) { // config.headers['Authorization'] = getToken() // 让每个请求携带自定义token 请根据实际情况自行修改 // } // return config // }, error => { // // Do something with request error // console.log(error) // for debug // Promise.reject(error) // }) // respone拦截器 // service.interceptors.response.use( // response => { // console.log(response) // const res = response.data // if (!res.success) { // Message({ // message: res.message, // type: 'error', // duration: 5 * 1000 // }) // // 401:Token 过期了; // if (response.status === 401) { // // 重新获得token // } // // 50008:非法的token; 50012:其他客户端登录了; // if (res.code === 50008 || res.code === 50012 || response.status === 401) { // MessageBox.confirm('你已被登出,可以取消继续留在该页面,或者重新登录', '确定登出', { // confirmButtonText: '重新登录', // cancelButtonText: '取消', // type: 'warning' // }).then(() => { // store.dispatch('FedLogOut').then(() => { // location.reload()// 为了重新实例化vue-router对象 避免bug // }) // }) // } // return Promise.reject('error') // } else { // return response // } // }, // error => { // console.log('err' + error)// for debug // Message({ // message: error.message, // type: 'error', // duration: 5 * 1000 // }) // return Promise.reject(error) // } // ) service.interceptors.response.use( response => { const res = response.data if (!res.success) { Message({ message: res.message, type: 'error' , duration: 5 * 1000 }) if (res.success === false ) { Message({ message: res.error, type: 'error' , duration: 5 * 1000 }) } // 401:Token 过期了; if (response.status === 401) { // 重新获得token } // 50008:非法的token; 50012:其他客户端登录了; if (res.code === 50008 || res.code === 50012 || response.status === 401) { MessageBox.confirm( '你已被登出,可以取消继续留在该页面,或者重新登录' , '确定登出' , { confirmButtonText: '重新登录' , cancelButtonText: '取消' , type: 'warning' }).then(() => { store.dispatch( 'FedLogOut' ).then(() => { location.reload() // 为了重新实例化vue-router对象 避免bug }) }) } return Promise.reject( 'error' ) } else { return response } }, error => { // console.log('err' + error)// for debug Message({ message: error.message, type: 'error' , duration: 5 * 1000 }) return Promise.reject(error) } ) /** * 封装post请求 * @param url * @param data */ export function post(url, data) { return service({ url: url, method: 'post' , data: data }) } /** * 封装get请求 * @param url * @param data */ export function get(url, data) { return service({ url: url, method: 'get' , data: data }) } /** * 封装http请求 * @param url * @param data */ export function http(obj) { return service({ url: obj.url, method: obj.method, data: obj.data }) } export default service |
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 25岁的心里话
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 按钮权限的设计及实现