Access to fetch at 'http://11.11.49.240:30708/dolphinscheduler' from origin 'http://11.11.49.90:30880' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.
时间: 2024-04-06 09:33:07 浏览: 110
sudo apt-get install ethereum遇到E: Failed to fetch http://ppa.launchpad.net/, Unable to fetch some等
5星 · 资源好评率100%
这个问题看起来是跨域资源共享(CORS)的问题。该错误提示表示在从源 'http://11.11.49.90:30880' 请求 'http://11.11.49.240:30708/dolphinscheduler' 时,未在所请求的资源上设置 'Access-Control-Allow-Origin' 标头,因此浏览器阻止了该请求。
要解决这个问题,你需要在服务器端配置响应标头,以允许跨域请求。可以在响应标头中添加 'Access-Control-Allow-Origin' 标头,并将其设置为 '*'(允许所有来源)或将其设置为特定的来源('http://11.11.49.90:30880')。
如果你没有控制服务器端,你也可以在客户端请求时使用 'no-cors' 模式来禁用 CORS,但这只适用于一些简单的请求。
阅读全文