axios的使用,处理请求和响应,axios拦截器

1、axios官网

https://www.axios-http.cn/docs/interceptors

2、安装

npm install axios

3、在onMouunted钩子函数中使用axios来发送请求,接受响应

4.出现的问题:

(1) 但是如果发送请求请求时间过长,回出现请求待处理的情况,用户体验很不好,没有画面,我们可以加一个loding遮罩层,提示用户正在加载中,但是如果没个请求都手动添加,代码冗余

(2) 每个请求都要考虑,程序报错的情况,都需要catch一下,处理下异常,而且在拿数据时我们后端写了统一返回格式,但是前端响应的数据res里我们的数据被一层一层包裹着,每次都要一层一层的拿,代码冗余

5、解决方法:

使用axios的拦截器

新建一个http文件夹,新建index.ts文件用于定义请求和响应拦截器,在请求和响应拦截器中解决以上问题

复制代码
import axios from 'axios'
import { ElMessage, ElLoading } from 'element-plus'
const config = {
    baseURL: '',
    timeout: 30 * 1000,
    withCredentials: true,
}

let loading: any
class Http {
    myAxios: any;
    constructor(config: any) {
        this.myAxios = axios.create(config);
        // 添加请求拦截器
        this.myAxios.interceptors.request.use(function (config: any) {
            //在发送请求时加载loading层
            loading = ElLoading.service({
                lock: true,
                text: '加载中...',
                background: 'rgba(0, 0, 0, 0.7)',
            })

            return config;

        }, function (error: any) {
            // 对请求错误做些什么
            loading.close()
            return Promise.reject(error);
        });
        // 添加响应拦截器
        this.myAxios.interceptors.response.use(function (response: any) {
            //在响应后关闭loading层
            loading.close()
            //取出响应的数据进行判断
            const { code, message, data } = response.data

            if (code == 0) {
                return data
            } else if (code == undefined) {
                return response
            } else {

                ElMessage.error(message)
                return Promise.reject(message);
            }


        }, function (error: any) {
            loading.close()
            return Promise.reject(error);
        });
    }
    get<T>(url: string, params?: object, data = {}): Promise<any> {
        return this.myAxios.get(url, { params, ...data });
    }

    post<T>(url: string, params?: object, data = {}): Promise<any> {
        return this.myAxios.post(url, params, data);
    }

    put<T>(url: string, params?: object, data = {}): Promise<any> {
        return this.myAxios.put(url, params, data);
    }

    delete<T>(url: string, params?: object, data = {}): Promise<any> {
        return this.myAxios.delete(url, { params, ...data });
    }

}


export default new Http(config);

在页面中使用时,直接使用用axios封装好的类

结果:

相关推荐
IT_陈寒1 分钟前
Java并发编程避坑指南:这5个隐藏陷阱让你的性能暴跌50%!
前端·人工智能·后端
化作繁星2 分钟前
前端设计模式详解
前端·设计模式
jinxinyuuuus10 分钟前
快手在线去水印:短链解析、API逆向与视频流的元数据重构
前端·人工智能·算法·重构
棒棒的唐14 分钟前
avue uploader图片预览拉伸变型的css处理方法
前端·css
sunshine~~~15 分钟前
ROS 2 Jazzy + Python 3.12 + Web 前端案例
开发语言·前端·python·anaconda·ros2
WYiQIU34 分钟前
突破字节前端2-1⾯试: JS异步编程问题应答范式及进阶(视频教学及完整源码笔记)
开发语言·前端·javascript·vue.js·笔记·面试·github
quikai198135 分钟前
python练习第四组
开发语言·前端·python
爱上妖精的尾巴38 分钟前
5-40 WPS JS宏 综合实例应用-5(求字符串中的最大值记录)
开发语言·前端·javascript·wps·js宏·jsa
曹卫平dudu41 分钟前
用Trea来快速生成一个浏览器插件
前端
dorisrv44 分钟前
React 状态管理:Zustand 快速上手指南
前端·react.js