Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 webpack 构建 react 项目,分离字体和图像等媒体文件。当 html 显示时,main.js 会自动获取资源。SPA html 和 js 文件位于不同的域中,然后浏览器显示“Access-Control-Allow-Origin”错误消息。我该怎么做才能解决它?
您可以调整源服务器上的 HTTP 标头。它所需要的只是一个名为 Access-Control-Allow-Origin 的附加 HTTP 标头,它允许 CORS。
一个有用的入门资源:
https://enable-cors.org/