Ajax jquery synchronous callback success

前端 未结 3 1330
说谎
说谎 2020-12-11 07:25

I have this function that makes an ajax call. I\'m describing the problem in the last chunk of code comments.

    function doop(){
            var that = thi         


        
3条回答
  •  被撕碎了的回忆
    2020-12-11 08:12

    Either set the Ajax call to synchronous as stefita pointed out, or just move your code into the success callback. Why can't you do this? Even if it's another Ajax call it still can be done - you can nest them. With the information given by you so far (I can't see the problematic code, nor I have enough domain knowledge about your project) I don't see a problem, really.

提交回复
热议问题