Is jQuery “each()” function synchronous?

2019-01-16 11:42发布

consider this scenario for validating:

function validateForm (validCallback) {
   $('#first-name').add($('#last-name')).add($('#address')).each(function () {
      // validating fields and adding 'invalid' class to invalid fields.
   });
   // doing validation this way for almost 50 fields (loop over 50 fields)
   if ($('#holder .invalid').length == 0) {
       // submitting data here, only when all fields are validated.
   }
}

Now, my problem is that, the if block get executed before loops are finished. I expected the body of validateForm to be executed synchronously, but it seems that jQuery each() function gets executed asynchronously. Am I right? Why this doesn't work?

8条回答
The star\"
2楼-- · 2019-01-16 12:19

For me it works like asyncronous. If it works sync, why it works like that:

var newArray = [];
$.each( oldArray, function (index, value){
        if($.inArray(value["field"], field) === -1){
            newArray.push(value["field"]);
        }
    }
);

//do something with newArray here doesn't work, newArray is not full yet

$.when.apply($, newArray).then(function() {
    //do something with newArray works!! here is full
});
查看更多
Lonely孤独者°
3楼-- · 2019-01-16 12:20

jQuery is purely a javascript library. Except ajax, setTimeout and setInterval there is nothing that can asynchronously executed in JavaScript. So each is definitely executed synchronously. There is definitely some js error inside the each block code. You should take a look in the console for any errors.

Alternatively you can take a look at jQuery queue to execute any function in the queue. This will make sure the queued function will be executed only when the previous code execution is complete.

查看更多
聊天终结者
4楼-- · 2019-01-16 12:20

Same problem. So i fix like this

var y = jQuery(this).find(".extra_fields");
for(var j in y)
{
    if( typeof  y[j] =='object')
    {
        var check = parseInt(jQuery(y[j]).val());
        if(check==0){
            jQuery(y[j]).addClass('js_warning');
            mes="Bạn vui lòng chọn đầy đủ các thuộc tính cho sản phẩm";
            done=false;
            eDialog.alert(mes);
            return false;
        }
    }

}
查看更多
爷、活的狠高调
5楼-- · 2019-01-16 12:21

The jQuery.each method loops Synchronously, but you can't guarantee that it'll loop through the items in any specific order.

查看更多
走好不送
6楼-- · 2019-01-16 12:24

Another reason to ask that question would be that .each will simply stop iteration when the (.each() ) function returns false, and an additional variable must be used to pass the "return false" information.

var all_ok=true;
$(selector).each(function(){
    if(!validate($(this))){
        all_ok=false; //this tells the outside world something went wrong
        return false; //this breaks the .each iterations, returning early
    }
});
if(!all_ok){
    alert('something went wrong');
}
查看更多
Viruses.
7楼-- · 2019-01-16 12:25

Thats how i do it

 function getAllEventsIndexFromId(id) {
    var a;
    $.each(allEvents, function(i, val) {
        if (val.id == id) { a=i; }
    });
    return a;
 }
查看更多
登录 后发表回答