gpt4 book ai didi

javascript - XMLHttpRequest 开放访问被拒绝

转载 作者:行者123 更新时间:2023-11-29 19:15:58 25 4
gpt4 key购买 nike

我试图在我的 javascript 代码中调用 xmlhttprequest 上的打开,但我收到异常“访问被拒绝”。

这是我的代码:

<script type="text/javascript">
function doFunction() {
alert("hi");
xhr = new XMLHttpRequest();
if (window.XMLHttpRequest) {
// code for IE7+, Firefox, Chrome, Opera, Safari
xhr = new XMLHttpRequest();
} else {
// code for IE6, IE5
xhr = new ActiveXObject("Microsoft.XMLHTTP");
}
var url = "https://localhost:1234/test/pi/testing/operation";
try{
xhr.open("POST", url, true);
} catch(err) {
alert(err.message);
}
xhr.setRequestHeader("Content-Type", "application/json;charset=UTF-8");
xhr.onreadystatechange = function () {
if (xhr.readyState == XMLHttpRequest.DONE) {
alert(xhr.responseText);
}
}
var testText = document.getElementById("test").value;
var jsonObject = { Status: "1", ErrorList: "", test: testText, Price: "" };
var data = JSON.stringify(jsonObject);
xhr.send(data);
}
</script>

该页面本身在我的 IIS 上运行,位于 localhost:8080,我正尝试在 localhost:1234 上调用我的 wcf 服务。我添加了 https://localhost到我信任的网站,但仍然无法正常工作,这是为什么?

谢谢;)

最佳答案

已添加 http://localhost到我信任的网站并开始工作。这个问题和这个答案适用于 IE 10

关于javascript - XMLHttpRequest 开放访问被拒绝,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35362162/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com