简体   繁体   中英

Q promise: are callbacks invoked in the same order as registered?

I'm using the Q promise library. My code relies on the fact that the callbacks for a single promise are executed in the same order as they were registered.

http://jsfiddle.net/HgYtK/1/

var deferred = Q.defer();
var promise = deferred.promise;

['first', 'second', 'third'].forEach(function (position) {
  promise.then(function () {
    alert(position);
  });
});

deferred.resolve();

This does produce the correct result, but I don't know if it's part of the spec or a happy coincidence that could break down the line.

From the Promises/A+ Spec

2.2.6.1

If/when promise is fulfilled, respective onFulfilled callbacks must execute in the order of their originating calls to then .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM