jQuery Deferred和Promise用于顺序执行同步和异步函数 [英] jQuery Deferred and Promise for sequential execution of synchronous and asynchronous functions

查看:176
本文介绍了jQuery Deferred和Promise用于顺序执行同步和异步函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果我想让同步和异步函数按特定顺序执行,我可以使用jQuery承诺,但它看起来并不像我期望的那样工作。

If I want to have synchronous and asynchronous functions execute in a particular order I could use jQuery promise but it doesn't seem to work the way I'd expect it to work.

当调用 deferred.resolve()时,函数a,b和c应按该顺序执行我希望函数b被执行但是无论是否调用了解决方案,所有函数都会立即执行。

Functions a,b and c should execute in that order when in a the deferred.resolve() is called I'd expect function b to be executed but all functions are executed immediately no matter if the resolve is called.

以下是代码:

function a(){
  var deferred = $.Deferred();
  setTimeout(function(){
    console.log("status in a:",deferred.state());
    //this should trigger calling a or not?
    deferred.resolve("from a");
  },200);
  console.log("a");
  return deferred.promise();
};
function b(){
  var deferred = $.Deferred();
  setTimeout(function(){
    console.log("status in b:",deferred.state());
    deferred.resolve("from b");
  },200);
  console.log("b");
  return deferred.promise();
}
//synchronous function
function c(){
  var deferred = $.Deferred();
  console.log("c");
  console.log("status in c:",deferred.state());
  deferred.resolve("from c");
  return deferred.promise();
}
function test(){
  fn=[a,b,c],i=-1,
  len = fn.length,d,
  d = jQuery.Deferred(),
  p=d.promise();
  while(++i<len){
    p=p.then(fn[i]);
  }
  p.then(function(){
    console.log("done");
  },
  function(){
    console.log("Failed");
  });
  d.resolve();
  //instead of the loop doing the following has the same output
  //p.then(a).then(b).then(c);
  //d.resolve();
}
test();

输出为:

a
b
status in c: pending
c
done
status in a: pending
status in b: pending

预期产出:

a
status in a: pending
b
status in b: pending
c
status in c: pending
done

尝试了以下修改的一些组合:

Tried a some combinations of the following modifications:

  d = jQuery.Deferred();
  setTimeout(function(){d.resolve();},100);
  var p=d.promise();
  while(++i<len){
    p.then(fn[i]);
  }

但是所有具有相同意外结果的b,在延迟a被解析之前被调用,c在被解析的延迟之前被调用。

But all with same unexpected results, b gets called before deferred of a is resolved, c is called before deferred of b is resolved.

推荐答案

对于1.8之前的jQuery,这是一个问题,但对于新的jQuery的版本,这不再是问题了:

For jQuery prior to 1.8, this is a problem, but for new versions of jQuery, this is not a problem anymore:

function test(){
  var d = jQuery.Deferred(), 
  p=d.promise();
  //You can chain jQuery promises using .then
  p.then(a).then(b).then(c);
  d.resolve();
}
test();

DEMO

以下是jQuery 1.7.2的演示

Below is the demo of jQuery 1.7.2

DEMO

这篇关于jQuery Deferred和Promise用于顺序执行同步和异步函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆