我的计算机上有一台本地运行的HTTP服务器。我需要对网址进行XHR调用,即(https://127.0.0.1:8989/test)。 当我在浏览器中点击相同的URL时,它工作正常。但是XHR请求失败并出现以下错误。
SCRIPT7002:XMLHttpRequest:网络错误0x2efd,由于错误00002efd无法完成操作。
以下是代码段。
$.ajax({
crossDomain: true,
contentType: 'text/plain; charset=utf-8',
url: "https://127.0.0.1:8989/test",
type: "POST",
data: null
})
.done(function(data) {
console.log("success");
})
.fail(function(textStatus) {
console.log("fails");
});
}
所有其他浏览器,除Microsoft Edge浏览器外,它的工作正常。 感谢任何关于此的指导。