How do I make a function wait until all jquery ajax requests are done inside another function?
In short, I need to wait for all ajax requests to be done before i execute the next. But how?
|
|
Actually, jQuery now defines a 'when' function for this purpose. http://api.jquery.com/jQuery.when/ It accepts any number of Deferred objects as arguments, and executes a function when all of them resolve. That means, if you want to initiate (for example) four ajax requests, then perform an action when they are done, you could do something like this:
In my opinion, it makes for a clean and clear syntax, and avoids involving any global variables such as ajaxStart and ajaxStop, which could have unwanted side effects as your page develops. If you don't know in advance how many ajax arguments you need to wait for (i.e. you want to use a variable number of arguments), it can still be done but is just a little bit trickier. See jQuery .when troubleshooting with variable number of arguments. If you need deeper control over the failure modes of the ajax scripts etc., you can save the object returned by .when() - it's a jQuery Promise object encompassing all of the original ajax queries. You can call .then() or .fail() on it to add detailed success/failure handlers. |
|||||||||||||||||
|
|
jQuery allows you to specify if you want the ajax request to be asynchronous or not. You can simply make the ajax requests synchronous and then the rest of the code won't execute until they return. For example: jQuery.ajax({ async: false,....}); |
|||||||||||||||||||||
|
|
I found a good answer by gnarf my self which is exactly what I was looking for :) jQuery ajaxQueue
Then you can add a ajax request to the queue like this:
|
|||||
|
|
You could probably get by with a simple counting semaphore, although how you implement it would be dependent on your code. A simple example would be something like...
If you wanted this to operate like {async: false} but you didn't want to lock the browser, you could accomplish the same thing with a jQuery queue.
|
|||||||||||
|
|
If you want to wait until all ajax requests are finished in your document,no matter how many of them exists, just use $.ajaxStop event this way:
|
||||
|
|
|
Use the 'ajaxStop' event. For example, let's say you have a 'loading ...' message while fetching 100 ajax requests and you want to hide that message once loaded. From the jQuery doc:
Do note that it will wait for all ajax requests being done on that page. |
|||
|
|
|
javascript is event-based, so you should never wait, rather set hooks/callbacks You can probably just use the success/complete methods of jquery.ajax Or you could use .ajaxComplete :
though youy should post a pseudocode of how your(s) ajax request(s) is(are) called to be more precise... |
|||
|
|
|
Look at my solution: 1.Insert this function (and variable) into your javascript file:
var runFunctionQueue_callback;
function runFunctionQueue(f, index, callback) {
var next_index = index+1
if (callback !== undefined) runFunctionQueue_callback = callback;
if (f[next_index] !== undefined) {
console.log(index + ' Next function avalaible -> ' + next_index);
$.ajax({
type: 'GET',
url: f[index].file,
data: (f[index].data),
complete: function(){
runFunctionQueue(f, next_index);
}
});
}
else {
console.log(index + ' Last function');
$.ajax({
type: 'GET',
url: f[index].file,
data: (f[index].data),
async: false,
complete: runFunctionQueue_callback
});
}
}
2.Buil an array with your requests, like this:
var f = [
{file: 'file_path', data: {action: 'action', data: 'any_data}},
{file: 'file_path', data: {action: 'action', data: 'any_data}},
{file: 'file_path', data: {action: 'action', data: 'any_data}},
{file: 'file_path', data: {action: 'action', data: 'any_data}}
];
3.Create callback function:
function Function_callback() {
alert('done');
}
4.Call the runFunctionQueue function with parameters:
runFunctionQueue(f, 0, QuestionInsert_callback );
// first parameter: array with requests data
// second parameter: start from first request
// third parameter: the callback function
|
|||
|
|
|
I have met this problem and created a generic plugin jquery_counter to solve it: http://plugins.jquery.com/project/jquery_counter |
|||
|
|
|
On the basis of @BBonifield answer, I wrote a utility function so that semaphore logic is not spread in all the ajax calls.
Example:
|
||||
|
|
|
My solution is as follows
Worked quite nicely. I've tried a lot of different ways of doing this, but I found this to be the simplest and most reusable. Hope it helps |
|||
|
|
|
A little workaround is something like this:
Hope can be useful... |
||||
|
|
|
If you need something simple; once and done callback
|
||||
|
|