本文介绍了'没有传输'错误w / jQuery ajax调用在IE的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要使用foursquare API来搜索场地。当然是跨域的。
I need to use foursquare API to search venues. Of course it is cross-domain.
它在Firefox中没有任何问题,但在Internet Explorer(7,8,9我已经测试)。
It has no any problems in Firefox but in Internet Explorer (7, 8, 9 I've tested).
我的JavaScript代码如下:
My javascript code looks like:
searchVenues: function(searchQuery) {
$.ajax({
url: 'https://api.foursquare.com/v2/venues/search',
data: {
sw: bound_south_west,
ne: bound_north_east,
query: searchQuery.query,
oauth_token: FSQ_OAUTH_TOKEN,
limit: 25,
intent: 'browse',
v: 20120206
},
cache: false,
dataType: 'json',
success: function(data) {
displayResults(data, searchQuery.query);
},
error: function(xhr, status, errorThrown) {
console.log(errorThrown+'\n'+status+'\n'+xhr.statusText);
}
});
}
在Firefox中,它完美显示接收到的数据。
在Internet Explorer中,它登录控制台:
In Firefox, it perfectly displays received data.In Internet Explorer, it logs on console:
No Transport
Error
Error
我应该怎么办?
推荐答案
我在Windows Mobile 7上测试了这个。
I tested this on Windows Mobile 7.
经过了很多时间,我终于找到了:
After LOTS of time spent to understand, I finally found this:
解决方案很简单,只需设置:
The Solution is simple, just set this:
$.support.cors = true;
和Ajax跨域请求将起作用。
and Ajax cross domain requests will work!
这篇关于'没有传输'错误w / jQuery ajax调用在IE的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!