跨服务器 AJAX 请求 - 适用于除 IE 之外的所有浏览器

发布于 2024-12-03 12:40:50 字数 381 浏览 0 评论 0原文

让我的跨服务器请求在 IE 中工作时遇到一些问题。有可能吗?我已经阅读了跨服务器请求,看来它完全取决于浏览器。如果我在任何其他浏览器栏 IE 中运行下面的函数,它会返回“成功”函数,IE 仅返回“错误”函数。

我的问题是,是否有可能让它在 IE 中返回“成功”?

我已将 JS 代码精简为以下内容:

jQuery.support.cors = true;

$.getJSON($this.attr('action'))
.error(function() {

    console.log('ERROR');

}).success(function() {

    console.log('success');

});

谢谢, 基督教

Having some problems getting my cross server request to work in IE. Is it possible at all? I've read up on Cross Server Requests, and it seems it depends completely on the browser. If I run the function below in any other browser bar IE, it returns the 'success' function, IE just returns the 'error' function.

My question is, is it possible to get this to return 'success' in IE at all?

I've stripped down my JS code to the following:

jQuery.support.cors = true;

$.getJSON($this.attr('action'))
.error(function() {

    console.log('ERROR');

}).success(function() {

    console.log('success');

});

Thanks,
Christian

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦巷 2024-12-10 12:40:50

为了执行跨域 AJAX 请求,您需要发出 JSONP 请求,可以通过附加“callback=?”来执行此请求到你的网址。

In order to do cross domain AJAX requests you need to make a JSONP request which you can do by appending 'callback=?' to your url.

记录错误消息,就像

$.getJSON($this.attr('action'))
.error(function(jxhr) {

    console.log(jxhr.status+" --- "+jxhr.responseText);

}).success(function(data) {

    console.log('success');

});

console.log(jxhr.status+" --- "+jxhr.responseText); 行在 IE 中所说的一样,也尝试指定 contentType ,例如

$.ajaxSetup({
  cache: false,
  crossDomain: true, 
  contentType: "application/json; charset=utf-8"
 });

希望这会有所帮助

log the error message like

$.getJSON($this.attr('action'))
.error(function(jxhr) {

    console.log(jxhr.status+" --- "+jxhr.responseText);

}).success(function(data) {

    console.log('success');

});

what does this console.log(jxhr.status+" --- "+jxhr.responseText); line says in IE also try specifying the contentType like

$.ajaxSetup({
  cache: false,
  crossDomain: true, 
  contentType: "application/json; charset=utf-8"
 });

hope this will help

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文