码迷,mamicode.com
首页 > Web开发 > 详细

vue--http请求的封装--session

时间:2018-05-25 13:58:28      阅读:1076      评论:0      收藏:0      [点我收藏+]

标签:tip   art   header   vue   ati   ||   com   export   ipa   

export function Fecth (url, data, file, _method) {
if (file) {
// 需要上传文件
return new Promise((resolve, reject) => {
axios({
url: url,
data: data,
headers: {
‘Content-Type‘: ‘multipart/form-data‘
},
method: ‘POST‘,
withCredentials: true
}).then(response => {
resolve(response)
})
.catch(error => {
reject(error)
})
})
} else {
// 不需要上传文件
return new Promise((resolve, reject) => {
axios({
url: url,
data: data,
transformRequest: [function (data) {
let ret = ‘‘
for (let it in data) {
if ((typeof data[it]) === ‘object‘) {
ret += encodeURIComponent(it) + ‘=‘ + encodeURIComponent(JSON.stringify(data[it])) + ‘&‘
} else {
ret += encodeURIComponent(it) + ‘=‘ + encodeURIComponent(data[it]) + ‘&‘
}
}
return ret
// let ret = qs.stringify(data)
// return ret
}],
headers: {
‘Content-Type‘: ‘application/x-www-form-urlencoded‘
},
method: _method || ‘POST‘
}).then(response => {
resolve(response)
}
)
.catch(error => {
reject(error)
}
)
})
}
}

vue--http请求的封装--session

标签:tip   art   header   vue   ati   ||   com   export   ipa   

原文地址:https://www.cnblogs.com/langqq/p/9087457.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!