Async false for shorthand AJAX get request

前端 未结 5 1076
梦毁少年i
梦毁少年i 2020-12-11 02:00

I am using the following ajax get function to check the status of a user. Is it possible to set async: false with this shorthand method? If not how can this be

5条回答
  •  天涯浪人
    2020-12-11 02:37

    This might work for you

    $.ajax({
        url : "/submit/checkuser/",
        type : "get",
        async: false,
        success : function(userStatus) {
           if (userStatus == 'Disabled') { // check if user if disabled                    
           } else if (userStatus == 'Deleted') { // check if user if deleted
           } else {
           };
        },
        error: function() {
           connectionError();
        }
     });
    

提交回复
热议问题