jQuery, Each() and Async Gets
Join the DZone community and get the full member experience.
Join For FreeOne of the things to keep in mind when using jQuery is that nothing is a blocking call. Sure, there is a certain sequence to when things operate. But, to be safe, you should always assume that step two will happen during step one.
No where is this more evident than when retrieving content from a URL and inserting that content in your page.
The temptation is to write code that looks something like this
$.each(json, function(index, entry)
{
jQuery.get(entry['url'], function(html)
{
// insert the HTML here.
}
}
The problem with this is that jQuery.get is an asynchronous call. This means that once the get has fired, the each loop will continue. This can cause all kinds of trouble for you, including having a complete iteration skipped, or if you are doing some kind of concatenation prior to inserting the HTML, having HTML for one iteration showing up in the middle of another.
Not exactly what you had in mind, eh?
But there is a fix. Use the ajax call instead and specify async:false to force the call to complete before allowing another call.
$.each(json, function(index, entry)
{
jQuery.ajax({ url: directory + '/' + entry['url'] , success: function(html)
{
// insert the HTML here.
}
}, async: false
});
Note too that using ajax without the async: false is the same as just using get.
Published at DZone with permission of Dave Bush, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments