Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

javascript function return data

I have a function like this that does an ajax call to grab some data from a database.

    function db (content) {
        $.post('/ajax/db.php', { 
           operation:operation,
           content:content
        }, function(data)
        {
            console.log(data);
            return data;
        });
    }

console.log(data); gives me the data that I want.

However how do I pass data to function db so that I can do something like:

var returnedData = db ('content');

Thanks!

like image 256
Mark Avatar asked Jul 01 '26 10:07

Mark


1 Answers

AJAX Operations are asynchronous so returning it directly isn't an option, not unless you make it synchronous (which locks up the browser). Instead, you should pass the data onto the next function in the callback, like this:

function db (content) {
    $.post('/ajax/db.php', { 
       operation:operation,
       content:content
    }, function(data)
    {   
        nextFunction(data);
    });
}

Or make it take a callback so you can pass the function that will get the data, when it's ready, like this:

function db (content, callback) {
    $.post('/ajax/db.php', { 
       operation:operation,
       content:content
    }, callback);
}

Then call it providing the callback function, for example:

db('content', function(data) { 
  //do something with data
});
like image 159
Nick Craver Avatar answered Jul 03 '26 01:07

Nick Craver