gpt4 book ai didi

Javascript 从服务器获取纯文本

转载 作者:行者123 更新时间:2023-11-27 23:37:02 24 4
gpt4 key购买 nike

我想从我的服务器接收纯文本(或任何文档)作为字符串变量,例如在警报中显示它我试过这个解决方案

wordsurl = "http://alpha/test";
function ButtonClicked() {
showsentence(wordsurl)
}

function httpGet(theUrl)
{
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
return xmlhttp.responseText;
}
}
xmlhttp.open("GET", theUrl, false );
xmlhttp.send(); // NS_ERROR_FAILURE is here
}

function showsentence(generatorurl) {
alert(httpGet(generatorurl));
}

但我收到 NS_ERROR_FAILURE。这是指发送。这是一个screenshot

如何从服务器获取纯文本?

这里是 Server code

最佳答案

啊,现在我明白了..

您应该从 http:// 服务器提供您的 html 页面。而不是作为文件 file://所以设置一个简单的http服务器,然后尝试再次访问它。您也可以从同一台服务器提供它,例如您的应用程序逻辑

关于Javascript 从服务器获取纯文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33452181/

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