Access to XMLHttpRequest at 'http://192.168.3.100:9282/courier/listCourier' from origin 'http://localhost:93' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.怎么解决
时间: 2023-04-04 19:01:03 浏览: 353
这是一个跨域资源共享(CORS)的问题,需要在服务器端添加响应头信息,允许来自 http://localhost:93 的请求访问 http://192.168.3.100:9282/courier/listCourier。可以在服务器端配置中添加 Access-Control-Allow-Origin 头信息,或者使用代理服务器来解决该问题。
阅读全文