-1

我对 ajax 开发非常陌生,我正在尝试使用 xhr 获取和发布数据,问题是当我使用基于端口的请求时?

这是我的工作代码,而不是工作代码

$.ajax({
url : "login.php",
type : "post",
data : {
    userProfile : JSON.stringify(data)
},
success : handleDBResponse,

    error : function(jqXHR, textStatus,errorThrown) {

    console.log("The following error occured: "+ textStatus,errorThrown);
},
complete : function() {
    // console.log("user authentication
    // successful.")
}
});

这很好用,但是当我使用带有 url:port 的本机 xhr 时没有响应。

 function reqListener () {
 console.log(this.responseText);
    };

      var oReq = new XMLHttpRequest();
      oReq.onload = reqListener;
      oReq.open("get", "http://www.domain.com:443/akorp.css", true);
      oReq.send();

它不工作,我被调试了,我发现请求状态被取消了。

.htaccess包含文件

Access-Control-Allow-Origin:*

我仍然收到错误

www.domain.com:443 not allowed by www.domain.com Access-Control-Allow-Origin etc..

此错误的可能原因是什么以及如何正确地将请求发送到端口?

4

1 回答 1

0

443 是 HTTPS 端口。也许您应该尝试使用 HTTPS URL 而不是强制使用端口。

我不确定我想知道你为什么要用 xhr 从别人的服务器中提取 CSS 文件。

于 2013-08-02T11:48:10.597 回答