uniapp 请求封装,拦截器:请求拦截、响应拦截

全局请求封装

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
export function http(path, params = {}, loading = true, method = "POST") {
console.log('%c请求拦截:', ' background:orange', params);
if (loading) {
uni.showLoading({
title: "加载中",
mask: true
});
};

return new Promise((resolve, reject) => {
uni.request({
header: {
Authorization: uni.getStorageSync("Authorization") || ""
},
url: import.meta.env.VITE_BASE_URL + path,
method,
data: params,
async success(res) {
uni.hideLoading();
resolve(res.data);
console.log('响应拦截:', path, params, res.data);
if (res.data?.code !== 0) {
uni.showToast({
icon: "error",
duration: 2000,
title: res.data.msg
});
}

},
fail(err) {
uni.hideLoading();
uni.reLaunch({
url: "/pages/status/service/error"
})
reject(err);
},
complete() {
// uni.hideLoading(); // 在showToast之前执行会受影响
}
});
});
};

局部业务接口封装

使用接口


uniapp 请求封装,拦截器:请求拦截、响应拦截
https://github.com/chergn/chergn.github.io/1fe005d59ab9/
作者
全易
发布于
2024年3月28日
许可协议