作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在使用 $q.all 异步运行 Promise 数组。在数组的一个元素中,我想级联 Promise,以便我想在跳到最外面的 then 函数之前完成整个函数。代码如下:
$q.all([
function1().then(function () { }, function (reason) { addToErrorList($scope, reason) }),
function2().then(function () { }, function (reason) { addToErrorList($scope, reason) }),
function3().then(function () { }, function (reason) { addToErrorList($scope, reason) }),
function4().then(function () { }, function (reason) { addToErrorList($scope, reason) }),
function5($q).then(
function() {
$q.all([
function51($q).then(function () { }, function (reason) { addToErrorList($scope, reason) }),
function52($q).then(function () {
someLogic();
}, function (reason) { addToErrorList($scope, reason); }),
])})
]).then(function () {
usSpinnerService.stop('spinner');
if ($scope.errorList.length > 0) {
showMessages($scope, $scope.errorList, "error");
}
});
代码似乎执行了“usSpinnerService.stop('spinner');”在它实际运行到 function51 和 function52 之前。我想知道是否有办法使外部 $q.all 执行所有函数?谢谢。
而且我还发现前四个函数中的 addToErrorList($scope, Reason) 都是异步运行的。有没有办法让它同步运行然后执行最外面的then函数?
更正:以上段落不正确。我已经检查了 addToErrorList 是否在外部 then 函数被命中之前运行。
最佳答案
您需要在此处返回$q.all
:
function() {
return $q.all([
function51($q).then(function () { }, function (reason) { addToErrorList($scope, reason) }),
function52($q).then(function () {
someLogic($http, $scope, $q, sharedService);
}, function (reason) { addToErrorList($scope, reason); }),
])})
关于javascript - $q.All 在级联时没有等待所有 promise 完成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40382749/
我是一名优秀的程序员,十分优秀!