jquery如何使用多个ajax调用一个结束后的另一个

前端之家收集整理的这篇文章主要介绍了jquery如何使用多个ajax调用一个结束后的另一个前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在移动应用程序,我使用多个ajax电话从网络服务器接收数据,如下所示
function get_json() {
    $(document).ready(function() {
        $.ajax({
            url: 'http://www.xxxxxxxxxxxxx',data: {
                name: 'xxxxxx'
            },dataType: 'jsonp',//jsonp: 'callback',//jsonpCallback: 'jsonpCallback',success: function(data) {
                $.each(data.posts,function(i,post) {
                    $.mobile.notesdb.transaction(function(t) {
                        t.executesql('INSERT into bill (barcode,buildingcode,buildingaddress,flatname,flatdescription,entryseason,period,amount,pastpayments,todaypayments,paydate,receiptno) VALUES (?,?,?);',[post.Id,post.Code,post.Address,post.Name,post.Description,post.EntrySeason,post.Period,post.Revenue,post.PastPayments,post.todaypayments,post.paydate,post.receiptno],//$.mobile.changePage('#page3','slide',false,true),null);
                    });
                    $('#mycontent').append(post.Name);
                });
            }
        });

        $.ajax({
            xxxx
        });

        $.ajax({
            xxxx
        });
    });
}

在第二次结束之后,如何强制第二次ajax调用开始之后…第三次,然后继续

thx提前为你的时间

解决方法

将它们放在成功之中:它所依赖的一个。
$.ajax({
    url: 'http://www.xxxxxxxxxxxxx',data: {name: 'xxxxxx'},success: function(data){

        // do stuff

        // call next ajax function
        $.ajax({ xxx });
    }
});
原文链接:https://www.f2er.com/jquery/182807.html

猜你在找的jQuery相关文章