gpt4 book ai didi

javascript - 407 需要代理身份验证

转载 作者:数据小太阳 更新时间:2023-10-29 04:43:15 25 4
gpt4 key购买 nike

在 Mozilla Firefox 中使用 XMLHttp 对象异步调用时出现以下异常。

407 Proxy Authentication Required
The ISA Server requires authorization to fulfill the request.
Access to the Web Proxy filter is denied.

原因描述:

实际上,我正在尝试在 javascript 中使用 get 发出异步请求。它在 IE 6 上工作正常,但对于 IE 7 和 Firefox 3.5,它不会使用异步请求获取任何数据,那么如何克服这个问题?

当我在 Firefox 3.5 中使用 firebug 进行调试时,它显示

407 Proxy Authentication Required The ISA Server requires authorization to fulfil the request. Access to the Web Proxy filter is denied.

控制台出现异常,如何解决这个问题

注意:我们的网络有代理服务器

最佳答案

我知道我在这里参加聚会有点晚了,但是这个问题,我遇到了完全相同的问题。 @FK82 指出了正确的解决方案,我想记录它,因为我已经尝试过并且它有效。

$.ajax({
url: "http://somefancyurl.com/api/do_it",
data: { id:"user" },
dataType: "jsonp",
success: function(data) {
console.log(data);
}
});

如果我不指定 jsonp,我会收到 407 需要代理身份验证 错误。

  • 虽然最初的问题没有指定 JQuery,但我能够使用这种方法和 JSONP 在 FireFox 3.6.x 和 IE7 上成功测试。

关于javascript - 407 需要代理身份验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2808590/

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