只要协议、域名、端口一种不一样就可能会产生跨域问题,此时服务器接受到了请求,是由于浏览器阻拦。
Access to XMLHttpRequest at 'http://localhost:8080/sockjs-node/info?t=1709736119524' from origin 'http://localhost:8081' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
解决方法如下:
1.在后端的目标方法上添加@CrossOrigin注解
2.统一处理,添加CORS过滤器
添加一个配置类,在配置类里面添加过滤器