gpt4 book ai didi

javascript - xmlhttprequest - 异常 101 错误

转载 作者:行者123 更新时间:2023-11-29 22:30:06 26 4
gpt4 key购买 nike

requrl_1 = "http://www.example.com/index.php";
requrl_2 = "http://www.example.com/redirect.php";

当我请求“requrl_1”时,没有问题。我得到回应。 “index.php”不是重定向页面。

但是 requrl_2 是一个重定向页面,它重定向到另一个网站(例如:http://www.cnn.com)。

所以当我使用 XMLHttpRequest 请求时,我收到了异常 101 错误。

我必须请求“redirect.php”,没有其他解决方案。

我该怎么做?为什么我会收到“异常 101”错误。


我正在为 google chrome 编写一个 Greasemonkey userscript 脚本。

最佳答案

最好只安装Tampermonkey并用它来运行你的脚本。然后你可以用 GM_xmlhttpRequest()Doc 编码-- 具有跨域支持。并且脚本获得了增强的功能以匹配 Greasemonkey 在 Firefox 上的功能。

如果您不想安装 Tampermonkey,Chrome userscripts now support cross-site requests via GM_xmlhttpRequest() .

所以,你可以使用:

GM_xmlhttpRequest ( {
method: "GET",
url: "http://www.example.com/redirect.php",
onload: function (response) {
//-- Do your business here.
}
} );

关于javascript - xmlhttprequest - 异常 101 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7451049/

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