项目采用的是springboot+vue结构,springboot负责写接口后台,vue负责前端显示 但是在请求接口的时候在浏览器上是没有错的,能返回数据,但是vue却报错No ‘Access-Control-Allow-Origin’ header is present on the requested resource
这个就是请求跨域的问题,解决的办法有两种
第一个办法:
在springboot后台处理,在controller控制类上标注@CrossOrigin
第二个办法:
在VUE模块中解决
、项目根目录中找到config/index.js文件,找到 proxyTable 添加如下配置
'/api': { //要代理的接口名
target: 'http://localhost:8080', //要代理的接口地址
changeOrigin: true, //支持跨域
pathRewrite: { //重写接口名,这里就是可以简写成‘api’
'^/api': ''
}
}