Ajax嵌套Ajax的模版

引入

在开发中,难免会碰到需要发送两次ajax请求或者更多的情况

情境:我们需要resultB数据,后台提供的接口要先传入参数paramA,获取到resultA,然后resultA作为参数,调用另外一个接口才能获取到resultB,这种情形就需要两个请求才能实现

代码模板

      $.ajax({
                  type:'get',
                  url:'http://127.0.0.1:8004/rest/video/getInterfaceA',
           data:{panoramA: 'panoramA'}, dataType:
'json', success:function( data ) { $.ajax({ type:'get', url:'http://127.0.0.1:8004/rest/video/getInterfaceB',
               data:{resultA: 'resultA'}, dataType:
'json', success:function( data ) { alert('test'); }, error:function(data) {} }); }, error:function(data) { } });

 

posted @ 2017-10-10 18:04  Rest探路者  阅读(416)  评论(0编辑  收藏  举报
levels of contents