当前位置:   article > 正文

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

axios response处理

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文件用于定义请求和响应拦截器,在请求和响应拦截器中解决以上问题

  1. import axios from 'axios'
  2. import { ElMessage, ElLoading } from 'element-plus'
  3. const config = {
  4. baseURL: '',
  5. timeout: 30 * 1000,
  6. withCredentials: true,
  7. }
  8. let loading: any
  9. class Http {
  10. myAxios: any;
  11. constructor(config: any) {
  12. this.myAxios = axios.create(config);
  13. // 添加请求拦截器
  14. this.myAxios.interceptors.request.use(function (config: any) {
  15. //在发送请求时加载loading层
  16. loading = ElLoading.service({
  17. lock: true,
  18. text: '加载中...',
  19. background: 'rgba(0, 0, 0, 0.7)',
  20. })
  21. return config;
  22. }, function (error: any) {
  23. // 对请求错误做些什么
  24. loading.close()
  25. return Promise.reject(error);
  26. });
  27. // 添加响应拦截器
  28. this.myAxios.interceptors.response.use(function (response: any) {
  29. //在响应后关闭loading层
  30. loading.close()
  31. //取出响应的数据进行判断
  32. const { code, message, data } = response.data
  33. if (code == 0) {
  34. return data
  35. } else if (code == undefined) {
  36. return response
  37. } else {
  38. ElMessage.error(message)
  39. return Promise.reject(message);
  40. }
  41. }, function (error: any) {
  42. loading.close()
  43. return Promise.reject(error);
  44. });
  45. }
  46. get<T>(url: string, params?: object, data = {}): Promise<any> {
  47. return this.myAxios.get(url, { params, ...data });
  48. }
  49. post<T>(url: string, params?: object, data = {}): Promise<any> {
  50. return this.myAxios.post(url, params, data);
  51. }
  52. put<T>(url: string, params?: object, data = {}): Promise<any> {
  53. return this.myAxios.put(url, params, data);
  54. }
  55. delete<T>(url: string, params?: object, data = {}): Promise<any> {
  56. return this.myAxios.delete(url, { params, ...data });
  57. }
  58. }
  59. export default new Http(config);

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

 

结果:

 

 

 

 

 

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/813157
推荐阅读
相关标签
  

闽ICP备14008679号