爬了两个小时的大坑 前端在github上拉了个vue项目,由于从来没正式学过vue,跨域这个问题一直困扰了很久. 目前暂时能用的解决方案(开发环境)就是: 前端在vue.config.js中加入代理. devServer: { port: 8085, open: true, // proxy: 8080, proxy: { '/api': { target: 'http://localhost:8080', ws: true, changeOrigin: true, } } }, 将封装的axi