Access to XMLHttpRequest at 'http://10.13.11.97:8011/mul-ind-merc/api/biz/tenant/regist' from origin 'http://localhost:8777' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.
时间: 2023-07-24 07:15:49 浏览: 145
这个错误是因为浏览器的同源策略,它防止一个域的javascript访问另一个域的资源。在这种情况下,你的前端应用程序在访问一个不同的域(10.13.11.97)的API资源时,服务器没有返回Access-Control-Allow-Origin头,导致浏览器阻止了请求。要解决这个问题,你可以在服务器端设置CORS头来允许跨域访问。
阅读全文