我正在使用vue-cli v4.0并尝试向本地服务器请求http(从我的开发服务器(8080)到12010)
我将使用jwt令牌和cookie,因此不能使用CORS npm。 因此,唯一的方法是proxyServer 我的vue.config.js文件就是这样。
module.exports = {
devServer: {
proxy: {
"/api" : {
target : " http://localhost:12010",
ws : true,
changeOrigin : true
}
},
disableHostCheck : true
}
}
但是当我请求服务器时,答案总是Access to XMLHttpRequest at 'http://127.0.0.1:12010/api/auth/token' from origin 'http://127.0.0.1:8080' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
解决方法是什么?