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!
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:
Or make it take a callback so you can pass the function that will get the data, when it’s ready, like this:
Then call it providing the callback function, for example: