我正在尝试向运行在另一个端口上的服务器上的其他http站点发出AJAX请求。
尝试这样做时,我收到以下错误:
XMLHttpRequest cannot load https://mysite.com:14245/url.html. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'https://mysite.com:14246' is therefore not allowed access.
我知道同样的原产地政策。我尝试将 crossDomain:true 添加到AJAX请求中。没有工作。我知道jQuery将协议,域和端口识别为站点,所以我不知道该怎么做,因为jQuery坚持认为我正在尝试跨站点伪造自己。我听说过使用CORS但我不确定如何使用它。有什么想法吗?