post:提交大量数据,一般格式有form-data和x-www-form-urlencoded
x-www-form-urlencoded 发起请求是需要对数据进行处理,拼接成字符串,传给服务器
axios.create({
headers: {// 'Content-type': 'application/x-www-form-urlencoded'// },
transformRequest: [ function (data) {
let ret = '' for (let it in data) { ret += encodeURIComponent(it) + '=' + encodeURIComponent(data[it]) + '&' } return ret
} ]
})