通过jQuery JSON请求返回对象

时间:2012-10-26 11:59:39

标签: jquery json

如何在以下jQuery示例中正确返回对象: -

function get_stockists() {
    $.getJSON("/stockists/ajax_get_all", function(data) {
        //console.log(data);
    });
}

var stockists = get_stockists();
console.log(stockists);

1 个答案:

答案 0 :(得分:7)

最好的方法不是返回,而是使用回调函数:

function getStockists(callback) {
    $.getJSON("/stockists/ajax_get_all", callback);
}

getStockists(function(stockists) {
    console.log(stockists);
});