我现在遇到了一个奇怪的 CORS 问题。
这是错误消息:
XMLHttpRequest cannot load http://localhost:8666/routeREST/select?q=[...]
Origin http://localhost:8080 is not allowed by Access-Control-Allow-Origin
两台服务器:
- localhost:8666/routeREST/ :这是一个简单的 Python Bottle 服务器。
- localhost:8080/ : Python simpleHTTPserver,我在其中运行 y Javascript 应用程序。这个应用程序正在上面的服务器上执行 Ajax 请求。
有没有想过可能是什么问题?
编辑:
而且......端口是问题所在。感谢您的回答:)
如果有人也在使用 Python 瓶子服务器,您可以按照这篇文章中给出的答案来解决 CORS 问题: Bottle Py: Enabling CORS for jQuery AJAX requests