标签:数据请求 nbsp code default IV enc har axios +=
axios.defaults.headers[‘Content-Type‘] = ‘application/x-www-form-urlencoded;charset=UTF-8‘ axios.defaults.transformRequest = [data=> { let ret = ‘‘ for (let it in data) { ret += encodeURIComponent(it) + ‘=‘ + encodeURIComponent(data[it]) + ‘&‘ } return ret }]
axios将数据请求格式修改为application/x-www-form-urlencoded
标签:数据请求 nbsp code default IV enc har axios +=
原文地址:https://www.cnblogs.com/wenxiangxu/p/9178898.html