问题遇到的现象和发生背景
场景RT 就是我再代码里是直接调用localhost:19196/readcard 请求的
但是上云服务器以后显然是不能用localhost的 因为这时候应该会访问云服务的ip的19196端口 而不是我浏览器端设备的19196端口
问题相关代码,请勿粘贴截图
axios({
method: 'get',
url: 'http://localhost:19196/readcard'
})
运行结果及报错内容
浏览器控制台报错如下
Access to XMLHttpRequest at 'http://localhost:19196/readcard' from origin 'http://xx' has been blocked by CORS policy:
The request client is not a secure context and the resource is in more-private address| space local
.