当前位置:   article > 正文

vue3 elementPlus axios请求配置(全局提示,接口请求动画)_elementplusaxios

elementplusaxios
  1. import axios from 'axios';
  2. import { showMessage } from './status' // 接口请求失败的状态码
  3. import { ElMessage, ElLoading } from 'element-plus'
  4. let loading: any = null
  5. const loadingConfig = { // ElLoading 的加载动画
  6. lock: true,
  7. text: 'Loading',
  8. background: 'rgba(0, 0, 0, 0.7)'
  9. }
  10. console.log(localStorage.getItem("token"));
  11. const service = axios.create({
  12. baseURL: import.meta.env.VITE_BASE_URL + '/', // url = base url + request url
  13. timeout: 600000,
  14. withCredentials: true, // send cookies when cross-domain requests
  15. // headers: {
  16. // "Cache-Control": "no-cache",
  17. // Pragma: "no-cache",
  18. // },
  19. })
  20. declare module "axios" {
  21. interface AxiosResponse<T = any> {
  22. errorinfo: null;
  23. // 这里追加你的参数
  24. }
  25. export function create(config?: AxiosRequestConfig): AxiosInstance;
  26. }
  27. const loadingWhiteList = ['/trade/pay/send/result/search'] // 请求白名单
  28. // axios实例拦截请求
  29. service.interceptors.request.use(
  30. config => {
  31. console.log("
    声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/82158
    推荐阅读
    相关标签