parent
152f2a10bb
commit
e2ba722cef
@ -0,0 +1,71 @@
|
|||||||
|
import axios from 'axios'
|
||||||
|
|
||||||
|
let base = '';
|
||||||
|
export const postRequest = (url, params) => {
|
||||||
|
return axios({
|
||||||
|
method: 'post',
|
||||||
|
url: `${base}${url}`,
|
||||||
|
data: params,
|
||||||
|
transformRequest: [function (data) {
|
||||||
|
// Do whatever you want to transform the data
|
||||||
|
let ret = ''
|
||||||
|
for (let it in data) {
|
||||||
|
ret += encodeURIComponent(it) + '=' + encodeURIComponent(data[it]) + '&'
|
||||||
|
}
|
||||||
|
return ret
|
||||||
|
}],
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/x-www-form-urlencoded'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
export const uploadFileRequest = (url, params) => {
|
||||||
|
return axios({
|
||||||
|
method: 'post',
|
||||||
|
url: `${base}${url}`,
|
||||||
|
data: params,
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'multipart/form-data'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
export const putRequest = (url, params) => {
|
||||||
|
return axios({
|
||||||
|
method: 'put',
|
||||||
|
url: `${base}${url}`,
|
||||||
|
data: params,
|
||||||
|
transformRequest: [function (data) {
|
||||||
|
let ret = ''
|
||||||
|
for (let it in data) {
|
||||||
|
ret += encodeURIComponent(it) + '=' + encodeURIComponent(data[it]) + '&'
|
||||||
|
}
|
||||||
|
return ret
|
||||||
|
}],
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/x-www-form-urlencoded'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
export const deleteRequest = (url) => {
|
||||||
|
return axios({
|
||||||
|
method: 'delete',
|
||||||
|
url: `${base}${url}`
|
||||||
|
});
|
||||||
|
}
|
||||||
|
export const getRequest = (url,params) => {
|
||||||
|
return axios({
|
||||||
|
method: 'get',
|
||||||
|
data:params,
|
||||||
|
transformRequest: [function (data) {
|
||||||
|
let ret = ''
|
||||||
|
for (let it in data) {
|
||||||
|
ret += encodeURIComponent(it) + '=' + encodeURIComponent(data[it]) + '&'
|
||||||
|
}
|
||||||
|
return ret
|
||||||
|
}],
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/x-www-form-urlencoded'
|
||||||
|
},
|
||||||
|
url: `${base}${url}`
|
||||||
|
});
|
||||||
|
}
|
Loading…
Reference in new issue