我现在遇到了一个奇怪的 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/ :我运行 y Javascript 应用程序的 Python simpleHTTPserver。这个应用程序正在上面的服务器上执行 Ajax 请求。
关于可能是什么问题的任何想法?
编辑:
而且...港口是问题所在。感谢您的回答:)
如果有人也在使用 Python 瓶服务器,您可以按照这篇文章中给出的答案来解决 CORS 问题: Bottle Py:为 jQuery AJAX 请求启用 CORS