$.getJSON 范围问题
$.getJSON('http://twitter.com/followers/ids.json?screen_name=' + query1 + '&callback=?', function (data) {
console.log('JSON data string 1 is: ' + data);
$.getJSON('http://twitter.com/followers/ids.json?screen_name=' + query2 + '&callback=?', function (data1) {
console.log('JSON data string 2 is: ' + data1);
f2 = data1;
f1 = data;
for (var i = 0; i < f1.length; i++) {
for (var j = 0; j < f2.length; j++) {
if (f1[i] == f2[j]) { //console.log("Adding f1[i]");
common.push(f1[i]);
}
}
}
for (var d = 0; d < common.length; d++) {
$.getJSON('http://twitter.com/users/show.xml?user_id=' + common[d] + '&callback=?', function (data2) {
$('#content').append('<>img width="50" height="50" src=' + data2.profile_image_url + '><
href="http://www.twitter.com/' + data2.screen_name + '">' + data2.name + '</></>');
});
}
});
});
在这段代码中,我基本上得到了一个数组(common[]),其中包含两个 Twitter 用户之间的所有共同关注者,
但第三个 $.getJSON 调用似乎根本没有响应
我做错了什么吗?
任何帮助将不胜感激,
谢谢
$.getJSON('http://twitter.com/followers/ids.json?screen_name=' + query1 + '&callback=?', function (data) {
console.log('JSON data string 1 is: ' + data);
$.getJSON('http://twitter.com/followers/ids.json?screen_name=' + query2 + '&callback=?', function (data1) {
console.log('JSON data string 2 is: ' + data1);
f2 = data1;
f1 = data;
for (var i = 0; i < f1.length; i++) {
for (var j = 0; j < f2.length; j++) {
if (f1[i] == f2[j]) { //console.log("Adding f1[i]");
common.push(f1[i]);
}
}
}
for (var d = 0; d < common.length; d++) {
$.getJSON('http://twitter.com/users/show.xml?user_id=' + common[d] + '&callback=?', function (data2) {
$('#content').append('<>img width="50" height="50" src=' + data2.profile_image_url + '><
href="http://www.twitter.com/' + data2.screen_name + '">' + data2.name + '</></>');
});
}
});
});
in this code basically im getting an array(common[]) that contains all the common followers between two twitter users
but the third $.getJSON call doesnt seem to responding at all
Am i doing something wrong
Any help will be appreciated
Thank You
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样设置一个全局 AJAX 错误事件处理程序,然后您可以检查错误。 请记住,如果在 jQuery AJAX 请求的上下文中发生错误,则错误函数之外不会发生任何事情。 如果您使用 $.getJSON 方法,则必须在 $.ajaxSetup 方法中设置错误处理程序。
setup a global AJAX error event handler like so, and you can then inspect the error. remember if an error occurs within the context of a jQuery AJAX request then nothing happens outside of the error function. if you are using the $.getJSON method then you must set up the error handler in the $.ajaxSetup method.
让它工作...问题是 url 有 show.xml ...我只是将其更改为 show.json 并且它开始工作
got it working...the problem was that the url had show.xml ...i just changed it to show.json and it started working