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

axios将数据请求格式修改为application/x-www-form-urlencoded

时间:2018-06-13 18:10:31      阅读:1030      评论:0      收藏:0      [点我收藏+]

标签:数据请求   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

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