本地vue测试post请求需要跨域,axios总会发送一个options请求解决方法

在axios/index.js添加下面配置

axios.interceptors.request.use((config) => {
  if(config.method === 'post') {
      config.headers={'Content-Type': 'text/plain'}
  }
  return config;
}, (error) => {
  return Promise.reject(error);
}); 

在vue里请求:

 this.$.post(url ,data) .then()
上一篇:vue2项目中支持可选链 (?.)、双问号 (??)


下一篇:2022.02.09-高宝琪毕设阶段性汇报