最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - get return value of jQuery get().done() function - Stack Overflow

programmeradmin1浏览0评论

I have the code:

function images(){
    $.get("page").done(function(data) {
        manipulation to get required data
    });
}

and I have tried to get a variable from inside the get function, using global variables, return values, and functions outside of the function. Does anyone know how I would be able to get a variable from inside the get function and return it as a value if I called images()?

I have the code:

function images(){
    $.get("page").done(function(data) {
        manipulation to get required data
    });
}

and I have tried to get a variable from inside the get function, using global variables, return values, and functions outside of the function. Does anyone know how I would be able to get a variable from inside the get function and return it as a value if I called images()?

Share Improve this question asked Nov 2, 2013 at 9:43 Lugia101101Lugia101101 6711 gold badge7 silver badges21 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 11

You can't do it since $.get() executes asynchronously. The solution is to use a callback in images to process the value returned by $.get()

function images(callback){
    $.get("page").done(function(data) {
        manipulation to get required data
        var d = ? //manipulated data that was supposed to be returned
        callback(d);
    });
}

then

//calls images
images(function(data){
    //this method will get called when the $.get() is pleted, and data will be the value passed to callback(?) in the done function
})

More: read this

发布评论

评论列表(0)

  1. 暂无评论