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.怎么解决,已经在服务端添加Access-Control-Allow-Origin: http://localhost:93响应头,还是会报错
时间: 2023-04-04 15:01:09 浏览: 191
这个问题可能是由于服务端没有正确配置 CORS 导致的。你可以尝试在服务端添加 Access-Control-Allow-Methods 和 Access-Control-Allow-Headers 响应头,以及在客户端发送请求时设置 withCredentials 为 true。如果问题仍然存在,可能需要进一步检查服务端的配置和代码。
相关问题
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.怎么解决
这是一个跨域资源共享(CORS)的问题,需要在服务器端添加响应头信息,允许来自 http://localhost:93 的请求访问 http://192.168.3.100:9282/courier/listCourier。可以在服务器端配置中添加 Access-Control-Allow-Origin 头信息,或者使用代理服务器来解决该问题。
阅读全文