-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathindex.js
78 lines (76 loc) · 2.06 KB
/
index.js
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import buildURL from '../helpers/buildURL'
import buildFullPath from '../core/buildFullPath'
import settle from '../core/settle'
const mergeKeys = (keys, config2) => {
let config = {}
keys.forEach(prop => {
if (typeof config2[prop] !== 'undefined') {
config[prop] = config2[prop]
}
})
return config
}
export default (config) => {
return new Promise((resolve, reject) => {
const _config = {
url: buildURL(buildFullPath(config.baseURL, config.url), config.params),
header: config.header
}
const complete = (response) => {
response.config = config
try {
// 对可能字符串不是json 的情况容错
if (typeof response.data === 'string') {
response.data = JSON.parse(response.data)
}
// eslint-disable-next-line no-empty
} catch (e) {
}
settle(resolve, reject, response)
}
let requestTask
if (config.method === 'UPLOAD') {
let otherConfig = {
// #ifdef MP-ALIPAY
fileType: config.fileType,
// #endif
filePath: config.filePath,
name: config.name,
complete: complete
}
const optionalKeys = ['formData',
// #ifdef APP-PLUS || H5
'files',
// #endif
// #ifdef H5
'file'
// #endif
]
requestTask = uni.uploadFile({..._config, ...otherConfig, ...mergeKeys(optionalKeys, config)})
} else if (config.method === 'DOWNLOAD') {
requestTask = uni.downloadFile({..._config,complete})
} else {
const optionalKeys = [
'method',
'data',
'dataType ',
// #ifndef MP-ALIPAY || APP-PLUS
'responseType',
// #endif
// #ifdef MP-ALIPAY || MP-WEIXIN
'timeout',
// #endif
// #ifdef H5
'withCredentials',
// #endif
// #ifdef APP-PLUS
'sslVerify'
// #endif
]
requestTask = uni.request({..._config,...mergeKeys(optionalKeys, config), complete})
}
if (config.getTask) {
config.getTask(requestTask, config)
}
})
}