@bornkiller
2014-09-02T11:49:08.000000Z
字数 480
阅读 2263
未分类
Q.all([first.promise, second.promise])
.then(function(promises) {
}, function(reason){
});
Q.allSettled([first.promise, second.promise])
.then(function(promiseSnapshots) {
}, function(reason){
});
Q.all([first.promise, second.promise])
.spread(function(exfirst, exsecond) {
}, function(reason) {
});