Axios相关记录

2020-10-02  本文已影响0人  Il_mondo

Formdata请求配置

transformRequest: [
  function(data) {
    let ret = '';
    for (let it in data) {
      ret += encodeURIComponent(it) + '=' + encodeURIComponent(data[it]) + '&';
    }
    return ret;
  }
],
//设置请求头
headers: {
  'Content-Type': 'application/x-www-form-urlencoded'
}
上一篇 下一篇

猜你喜欢

热点阅读