Vue axios 将传递的json数据转为form data的例子
时间:2020-12-13 10:24:15|栏目:vue|点击: 次
修改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) })