在Ajax中为jQuery 1.8进行同步请求

时间:2012-10-08 15:22:33

标签: javascript ajax jquery twitter

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

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

但是我需要获取所有页面,因为我们知道你可以根据twitter api的建议从api获得15 * 100的结果。

CODE:可以在这里找到。 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);
            }
    });
  }

1 个答案:

答案 0 :(得分: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)); })