axios二次封装的几种方法
一、用Class方法
import axios from "axios";
declare var Promise: any;
export class Request {
static _instance: Request;
static getInstance() {
// tslint:disable-next-line:no-unused-expression
this._instance || (this._instance = new Request());
return this._instance;
}
config: any;
constructor() {
axios.interceptors.request.use(config => {
// 处理请求数据,如添加Header信息等,
// 完善url等
let baseUrl = '';
config.url = `${baseUrl}${config.url}`;
return config;
});
axios.interceptors.response.use(
response => {
// 处理返回数据
return response.data;
},
error => {
if (error.response.status === 401) {
// 未登录
} else if (error.response.status === 400) {
// 错误信息 alert
}
return Promise.reject(error);
}
);
}
get(url: string, config: object = {}) {
return axios.get(url, config);
}
post(url: string, data: any = {}, config: object = {}) {
return axios.post(url, data, config);
}
put(url: string, data: any, config: object = {}) {
return axios.put(url, data, config);
}
delete(url: string, config: object = {}) {
return axios.delete(url, config);
}
}
用法:
import {Request} from "@/utils/request";
const request = new Request();
const res: any = request.post("/iot/configParam", data);
二、取消重复请求
用法:
import request from "@/utils/request";
request({
method: "GET",
url: "/api/workflow/getAllUserPermission",
// params: {
// test: 6
// }
}).then((result) = > {
// console.log(result)
}).
catch ((err) = > {
// console.log(err)
});
三、抛出项目所有的请求方法
import axios, {
AxiosResponse, AxiosRequestConfig
}
from "axios";
import requestConfig from "@/config/requestConfig";
// import {
// showFullScreenLoading,
// tryHideFullScreenLoading
// } from "./axiosHelperLoading";
// 公共参数
const conmomPrams: object = {};
class HttpRequest {
public queue: any; // 请求的url集合
public constructor() {
this.queue = {};
}
destroy(url: string) {
delete this.queue[url];
// 关闭全局的loading...
if (!Object.keys(this.queue).length) {
// tryHideFullScreenLoading();
}
}
interceptors(instance: any, url ? : string) {
// 请求拦截
instance.interceptors.request.use(
(config: AxiosRequestConfig) = > {
// 在请求前统一添加headers信息
config.headers = {};
// 添加全局的loading...
if (!Object.keys(this.queue).length) {
// showFullScreenLoading();
}
if (url) {
this.queue[url] = true;
}
return config;
}, (error: any) = > {
console.error(error);
});
// 响应拦截
instance.interceptors.response.use(
(res: AxiosResponse) = > {
if (url) {
this.destroy(url);
}
const {
data, status
} = res;
// 请求成功
if (status === 200 && data) {
return data;
}
return requestFail(res);
},
// 失败回调
(error: any) = > {
if (url) {
this.destroy(url);
}
console.error(error);
});
}
async request(options: AxiosRequestConfig) {
const instance = axios.create();
await this.interceptors(instance, options.url);
return instance(options);
}
}
// 请求失败
const requestFail = (res: AxiosResponse) = > {
let errCode = 408;
let errStr = "网络繁忙!";
return {
err: console.error({
code: res.data.code || errCode,
msg: res.data.message || errStr
})
};
};
// 合并axios参数
const conbineOptions = (opts: any): AxiosRequestConfig = > {
const _data = {...conmomPrams, ...opts.data
};
const options = {
method: opts.method || "GET",
url: opts.url,
headers: opts.headers
// baseURL: process.env.VUE_APP_BASE_API,
// timeout: 5000
};
return options.method !== "GET" ? Object.assign(options, {
data: _data
}) : Object.assign(options, {
params: _data
});
};
const HTTP = new HttpRequest();
/**
* 抛出整个项目的api方法
*/
const Api = (() = > {
const apiObj: any = {};
const requestList: any = requestConfig;
const fun = (opts: AxiosRequestConfig) = > {
return async(params: any = {}) = > {
Object.assign(opts, params);
const newOpts = conbineOptions(opts);
const res = await HTTP.request(newOpts);
return res;
};
};
Object.keys(requestConfig).forEach(key = > {
let opts = {
url: requestList[key]
};
apiObj[key] = fun(opts);
});
return apiObj;
})();
export
default Api as any;
用法:
import Api from "@/utils/request";
export const getKtUploadYxsj = (params = {}) = > {
return Api.getKtUploadYxsj(params);
};
axios二次封装的几种方法的更多相关文章
- 原生 Ajax 封装 和 Axios 二次 封装
AJAX 异步的JavaScript与XML技术( Asynchronous JavaScript and XML ) Ajax 不需要任何浏览器插件,能在不更新整个页面的前提下维护数据,但需要用户允 ...
- axios 二次封装
一般项目往往要对 axios 库进行二次封装,添加一些自定义配置和拦截器等 案例 ./service/axios.js 1234567891011121314151617181920212223242 ...
- 【vue】axios二次封装,更好的管理api接口和使用
在现在的前端开发中,前后端分离开发比较主流,所以在封装方法和模块化上也是非常需要掌握的一门技巧.而axios的封装也是非常的多,下面的封装其实跟百度上搜出来的axios封装或者axios二次封装区别不 ...
- PHP生成带logo图像二维码的两种方法
本文主要和大家分享PHP生成带logo图像二维码的两种方法,主要以文字和代码的形式和大家分享,希望能帮助到大家. 一.利用Google API生成二维码Google提供了较为完善的二维码生成接口,调用 ...
- 微信支付支付宝支付生成二维码的方法(php生成二维码的三种方法)
如果图简单,可以用在线生成 http://pan.baidu.com/share/qrcode?w=150&h=150&url=http://www.xinzhenkj.com 最简单 ...
- JS模拟实现封装的三种方法
前 言 继承是使用一个子类继承另一个父类,那么子类可以自动拥有父类中的所有属性和方法,这个过程叫做继承! JS中有很多实现继承的方法,今天我给大家介绍其中的三种吧. 1.在 Object类上 ...
- [PHP] 生成二维码(两种方法)
方法一:(调用google二维码接口,本人测试网不好,不好用!) <?php //1.封装生成二维码图片的函数(方法) /** *利用google api生成二维码图片 * $content:二 ...
- 使用PHP生成二维码的两种方法(带logo图像)
一.利用Google API生成二维码 Google提供了较为完善的二维码生成接口,调用API接口很简单,以下是调用代码: ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ...
- axios二次封装
import axios from "axios" //请求拦截器 axios.interceptors.request.use(function (config) { retur ...
随机推荐
- Codeforces Round #585 (Div. 2) B. The Number of Products(DP)
链接: https://codeforces.com/contest/1215/problem/B 题意: You are given a sequence a1,a2,-,an consisting ...
- date对象设置set
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...
- map填充bean赋值,包括父类全部填充。
有不少工具类给bean填充值.但是填充,很多都是只能填充到当前类的对象.经过需求修改,做了个工具类: import java.lang.reflect.Field; import java.lang. ...
- json读写
import json l = [,,}] print(json.dumps(l)) d = dict(b=None,a=,c='abc') print(json.dumps(d, separator ...
- vue中使用ckeditor,支持wps,word,网页粘贴
由于工作需要必须将word文档内容粘贴到编辑器中使用 但发现word中的图片粘贴后变成了file:///xxxx.jpg这种内容,如果上传到服务器后其他人也访问不了,网上找了很多编辑器发现没有一个能直 ...
- AI 期刊会议
本文目的为寻找以下方向最新的发展方向和资料,比如期刊会议. AI包括以下方向:计算机视觉(CV).语言(NLP)和语音 A:计算机视觉(CV) B:语言(NLP) 1. 会议 ACL.EMNLP.NA ...
- Django基础之中间件
1. 引入 在之前学习的过程中,已经学会了给视图函数加装饰器来判断用户是否登录,把没有登录的用户请求跳转到登录页面. 我们通过给几个特定视图函数加装饰器实现了这个需求. 但是以后添加的视图函数可能也需 ...
- Ubuntu start:未知任务:mysql
在Ubuntu环境下,下载安装mysql但是到最后启动的时候却显示这一句话: start :未知任务:mysql 很纳闷,明明按照教程一步一步写的.后来才想起来,万能的方法,在前面加权限 sudo s ...
- 2016百度之星资格赛 Problem B(大数+组合数)
题意:度熊面前有一个全是由1构成的字符串,被称为全1序列.你可以合并任意相邻的两个1,从而形成一个新的序列.对于给定的一个全1序列,请计算根据以上方法,可以构成多少种不同的序列.最多200个1. 比如 ...
- Python经典练习题1:一个整数,它加上100后是一个完全平方数,再加上168又是一个完全平方数,请问该数是多少?
Python经典练习题 网上能够搜得到的答案为: for i in range(1,85): if 168 % i == 0: j = 168 / i; if i > j and (i + j) ...