跨服务器 AJAX 请求 - 适用于除 IE 之外的所有浏览器
让我的跨服务器请求在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为了执行跨域 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.
记录错误消息,就像
console.log(jxhr.status+" --- "+jxhr.responseText);
行在 IE 中所说的一样,也尝试指定contentType
,例如希望这会有所帮助
log the error message like
what does this
console.log(jxhr.status+" --- "+jxhr.responseText);
line says in IE also try specifying thecontentType
likehope this will help