为什么这个ajax请求可以正常工作?

时间:2019-03-22 14:46:21

标签: javascript

  let massErrors=[];

    if (Pass != '' && PassRepeat == Pass && Email != '' && Nik != '') {

           $.ajax({ 
               url: '../php/index.php',
               method: 'POST',
               dataType: 'json',
               success: function (data) {
                   data.forEach(function (record) {
                       {
                           if (record.nik === Nik) {
                                massErrors.push("Errors ")

                           }
                       }
                   })
               },
           });

            console.log(massErrors);
            console.log(massErrors.length)
            if(massErrors.length<0){

也许我听不懂,但是ajax是异步的,好像(massErrors)检查数据是否还没有到达?

0 个答案:

没有答案