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 changed so that I can add async false?
$.get("/submit/checkuser/", function (userStatus) {
if (userStatus == 'Disabled') { // check if user if disabled
} else if (userStatus == 'Deleted') { // check if user if deleted
} else {
};
}).fail(function () {
connectionError();
});
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…