0

我阅读了很多人提出的大部分问题,但正如 jQuery 1.8.X async: false 文档中所建议的那样,不推荐使用。

用例:我想获取某个位置的主题的所有推文(使用推特搜索 API),我可以使用地理编码和 q 参数获取这些推文。

但我需要获取所有页面,因为我们知道您可以按照 twitter api 的建议从 api 获得 15 * 100 个结果。

代码:可以在这里找到。http://pastebin.com/rgVDQFve

问题是 tweetsPerPage 未定义,因为 getTweets 返回的对象状态为 1,但它的状态应为 4。

我正在使用 jQuery 1.8.2 我尝试更改它但没有效果。

任何人都可以提出一些建议。

编辑 :

function main() {
for(hindex=0; hindex<HASHTAGS.length; hindex++)  {
    for (cindex=0; cindex<COORDINATES.length;cindex++) {
        for (pindex=0; pindex<NUMBER_OF_PAGES; pindex++) {
            getTweets(HASHTAGS[hindex], COORDINATES[cindex][1], COORDINATES[cindex][2], pindex+1, function(tweets) {
                TWEETS = TWEETS.concat(tweets); /*basically I am getting all the tweets in this, I just need a way by which after executing all the getTweets along with their success functions and the callback I get the control to myself which will help me in using TWEETS*/
            });
        }
    }
}

}

    function  getTweets(hashtag, latitude, longitude, pageIndex, callback) {
    $.ajax({    
            url: 'http://search.twitter.com/search.json',
            cache: false, 
            dataType: 'jsonp',
            data: {
                    q: hashtag,
                    geocode: latitude + "," + longitude + "," + RADIUS,
                    page: pageIndex,
                    rpp: RESULTS_PER_PAGE,
                    result_type: RESULT_TYPE
            },
            success: function (data) {
                var results = data.results;
                var tweets = [];
                $(results).each(function(index, tweetJSON) {
                        var tweet = {
                            created_at: 'Dhruven' + " " + pageIndex + " " + (index+1)
                        };
                        var tweetObj = JSON.stringify(tweet);
                        tweets.push(tweetObj);  
                });
                callback(tweets);
            }
    });
  }
4

1 回答 1

1

正如评论中所说,jsonp 请求不支持同步请求。

但是带有回调的异步请求似乎正在工作,请参见小提琴:

http://jsfiddle.net/andreortigao/hAevy/

代码:

function getTweets(hashtag, latitude, longitude, pageIndex, callback) {
    $.ajax({    
            url: 'http://search.twitter.com/search.json',
            type:'GET',
            dataType: 'jsonp',
            data: {
                    q: hashtag,
                    geocode: latitude + "," + longitude + "," + '10mi',
                    page: pageIndex,
                    rpp: 10,
                    result_type: 'recent'
            },
            success: function (data, status, xmlHttp) {
                var results = data.results;
                var tweets = [];
                $(results).each(function(index, tweetJSON) {
                        var tweet = {
                            created_at: 'Dhruven' + " " + pageIndex + " " + (index+1)
                        };
                        var tweetObj = JSON.stringify(tweet);
                        tweets.push(tweetObj);  
                });
                callback(data.results);
            }
    });
}

称呼:

getTweets("#facebook", 42.3580555555556, -71.0602777777778, 2, function(tweets){
 $("#log").text(JSON.stringify(tweets)); })
于 2012-10-08T18:18:21.827 回答