1. axios将请求设置为form-dara的数据请求格式
headers: {'Content-Type': 'application/x-www-form-urlencoded'},
transformRequest: [function (data) {
let ret = '';
let num = 1;
for (let it in data) {
if (Object.keys(data).length === num) {
ret += encodeURIComponent(it) + '=' + encodeURIComponent(data[it]);
} else {
ret += encodeURIComponent(it) + '=' + encodeURIComponent(data[it]) + '&'
}
num++;
}
return ret;
}]
转载请注明原文地址:https://ipadbbs.8miu.com/read-14491.html