如何从具有$ .getJSON的自定义函数直接解析返回数据?

时间:2012-06-18 13:36:57

标签: jquery json twitter getjson

我在自定义函数getSearch()中调用$ .getJSON。我想直接将数据返回到我正在呼叫的容器中。 (比自定义函数中的.html()容易得多。它位于克隆对象上。)我正在尝试两种方式:1。将数据直接返回到callling函数,因为我已经“知道我在哪里”。 2.要将正确容器的var传递给函数,因此可以从那里将它放到正确的位置。我想我更喜欢第一种选择,但现在我无法继续工作。

这些是我的功能 - 一个在按下输入搜索框时触发,另一个是使用$ .getJSON()调用twitter的自定义函数。标有##。

的相关行
    // RUN SEARCH: when pressing enter key in search box
    $('.search_box_in_menu').keypress(function(e) {
        var keycode = (e.keyCode ? e.keyCode : e.which);
        if(keycode == '13') {                   // remember to add all the enter/return buttons
                console.log(".search_box_in_menu - enter-key pressed.");
                console.log($(this).val());
            var where = $(this).parent().parent().parent();
            var there = $(this).next('.results').attr('class');
            console.log("where:");
            console.log($(this));
            console.log($(this).parent().parent().parent());
            console.log($(this).next('.results').attr('class'));
            console.log(where);
            console.log("there:");
            console.log(there);
    ##      $(this).closest('.results').getSearch($(this).val(), where);    //calling twitter
                console.log("$(this).val() at enter-press: " + $(this).val());

            $(this).closest('.dropdown').trigger('click'); //close dropdown box
            $('.search_box_in_menu').tooltip('hide'); //hiding tooltip on searchbox when pressing enter
        }
    });



}); //$(document).ready 



// function for getting tweets from Twitter
$.fn.getSearch = function(searchword, where) { 
    var qterm = searchword;
    var preUrl = "http://search.twitter.com/search.json?q=";
    var postUrl = "&rpp=50&include_entities=true&show_user=true&callback=?";
    var twUrl =  preUrl + qterm + postUrl; 
    console.log(preUrl + ", " + qterm + ", " + postUrl);

    if (qterm !== '') {
        $.getJSON(twUrl, 
            function(data) { 
                console.log('sending to search_back.php.');
                console.log("data before send: " + data);
                $.post("search_back.php", {json_data: data}, function(data) { 
                        console.log("returned at: ");
                        console.log($(this));
                        console.log(where);
            ##      $(".results").html(data); // # this is the current way, but will apply to all cloned objects.
            ##      //return data; // # this is the preferred way
                });

            });
    };
};

有人知道如何以帅气的方式解决这个问题吗?我真的不想为.results分配一个ID,因为似乎必须有一个更优雅的方法来解决这个问题!

这是FireBug控制台日志:我所追求的.results是[div id =“menu200”]之后的下一个。

document.ready -
[div#menu200.dropdown]
.dropdown - click.
.search_box_in_menu - click.
.search_box_in_menu - value removed.
.search_box_in_menu - enter-key pressed.
twitter
where:
[input.search_box_in_menu Search...]
[div#menu200.dropdown]
undefined
[div#menu200.dropdown]
there:
undefined
http://search.twitter.com/search.json?q=, twitter, &rpp=50&include_entities=true&show_user=true&callback=?
$(this).val() at enter-press: twitter
[div#menu200.dropdown]
.search_box_in_menu - dirty searchbox.
.dropdown - click.
sending to search_back.php.
data before send: [object Object]
POST http://wikindoit.org/twitterstars/search_back.php
200 OK
927ms   
returned at:
[Object { url="search_back.php", isLocal=false, global=true, more...}]
[div#menu200.dropdown]

1 个答案:

答案 0 :(得分:0)

为getSearch添加第三个参数:

$.fn.getSearch = function(searchword, where, callback) {

并且在getScript成功回调结束时,您将调用callback并将其传递给它。

//$(".results").html(data);
callback(data);