码迷,mamicode.com
首页 > 其他好文 > 详细

Vue报错:OPTIONS 405 Method Not Allowed以及CORS跨域错误

时间:2020-03-06 13:43:42      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:get   后端   path   重写   index   tar   options   地址   table   

前端增加代理解决,这个其实应该后端解决的

  • 修改config/index.js(基于Vue-CLI2)
  • 增加proxyTable

 

module.exports = {
  dev: {
    // proxyTable: proxyConfig.proxyList, // 无效,不使用,20190422
    proxyTable: {
      ‘/api‘: {
          target: ‘http://localhost:8830‘,//后端接口地址
          changeOrigin: true,//是否允许跨越
          pathRewrite: {
              ‘^/api‘: ‘/api‘,//重写,
          }
      }
    },


} }

  

Vue报错:OPTIONS 405 Method Not Allowed以及CORS跨域错误

标签:get   后端   path   重写   index   tar   options   地址   table   

原文地址:https://www.cnblogs.com/ahuo/p/12425709.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!