Vue axios 将传递的json数据转为form data的例子
GallopYD 人气:0修改main.js文件中axios的配置:
在发送请求前将数据用qs模块转化
修改请求头的Content-Type='application/x-www-form-urlencoded'
具体配置如下:
import axios from 'axios' import qs from 'qs' // 添加请求拦截器 axios.interceptors.request.use(function (config) { if(config.method!='get'){ config.data=qs.stringify(config.data); } config.headers['Content-Type'] = 'application/x-www-form-urlencoded'; return config; },function (error) { return Promise.reject(error) })
以上这篇Vue axios 将传递的json数据转为form data的例子就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
加载全部内容