request.js
1.01 KB
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
44
45
46
47
48
49
50
51
52
53
const DOMAIN = 'https://api.glass.xiuyetang.com'
let loading = false
export default async function request({
url,
method = 'post',
data = {},
header = {
'Content-Type': 'application/x-www-form-urlencoded',
},
timeout = 3000,
withCredentials = false, // 跨域请求时是否携带凭证(cookies)
// sslVerify: true, // 验证 ssl 证书
success,
fail = (res) => {
console.log('fail status === > ', res)
},
complete = (res) => {
console.log('complete status === > ', res)
if (loading) {
uni.hideLoading()
}
},
isLoading = false,
loadingText = '加载中',
}) {
if (isLoading) {
loading = isLoading
uni.showLoading({
title: loadingText,
})
}
const uid = uni.getStorageSync('uid')
const openid = uni.getStorageSync('openid')
data = {
uid,
openid,
...data,
}
uni
.request({
url: DOMAIN + url,
method,
data,
header,
timeout,
withCredentials,
success,
fail,
complete,
})
}