码迷,mamicode.com
首页 > Web开发 > 详细

Jquery AJAX如何使用Promise/Deferred实现顺序执行?

时间:2016-01-06 11:47:11      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:

有的时候有我有N个AJAX请求,第下个请求可能要依赖上个请求的返回值, 可以用

$.ajax("test1.php").then(function(data) {
// data 是 test1.php 的返回值
return $.ajax("test2.php");
}).then(function(data) {
// data 是 test2.php 的返回值
return $.ajax("test3.php");
}).then(function(data) {
return $.ajax("test4.php");
});

  有的时候可以用when ,同时请求多个

function successFunc(){ console.log( “success!” ); }   
function failureFunc(){ console.log( “failure!” ); }   
  
$.when(   
   $.ajax( "/main.php" ),  
   $.ajax( "/modules.php" ),  
   $.ajax( “/lists.php” )  
 ).then( successFunc, failureFunc );   

  

Jquery AJAX如何使用Promise/Deferred实现顺序执行?

标签:

原文地址:http://www.cnblogs.com/shenggen/p/5104879.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!