为了账号安全,请及时绑定邮箱和手机立即绑定

Vue axios跨域请求问题

Vue axios跨域请求问题

海绵宝宝撒 2019-03-13 13:15:27
1.vue axios跨域请求,后台已配置允许跨域,代理访问的时候还报错跨域2.配置了代理访问地址还是localhostaxios.defaults.headers.common['Access-Control-Allow-Origin'] = "*";axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded';proxyTable: {  '/apis': {    target: 'http://192.168.1.109/xxx/aa',     changeOrigin: true,    pathRewrite: {      '^/apis': ''       }  }}this.$http.post('/apis/bbb/cccc', {  json:JSON.stringify({})}).then(function (response) {  console.log(response);}).catch(function (error) {  console.log(error);});3.请求结果报错Request header field Access-Control-Allow-Origin is not allowed by Access-Control-Allow-Headers in preflight response.Error: Request failed with status code 404at createError (createError.js?16d0:16)at settle (settle.js?db52:18)at XMLHttpRequest.handleLoad (xhr.js?ec6c:77)
查看完整描述

2 回答

?
手掌心

TA贡献1942条经验 获得超3个赞

你这个报错是因为你的请求中除了安全的头部字段额外加了Access-Control-Allow-Origin,后台并不允许这个字段
解决办法
后台配置响应头Access-Control-Allow-Headers中加上Access-Control-Allow-Origin

查看完整回答
反对 回复 2019-04-09
  • 2 回答
  • 0 关注
  • 646 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信