我对 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..
此错误的可能原因是什么以及如何正确地将请求发送到端口?