本文介绍了阻止 JavaScript Promise 的传播的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
想象一下,我有一个像下面这样的承诺链.如果 func2 被调用,我想避免 func3 或 func4 被完全调用.
Imagine I have a promise chain like the one below. If func2 is called, I would like to avoid func3 or func4 from being called altogether.
AsyncFunction()
.then(func1, func2)
.then(func3, func4)
目前,如果我在 func2 中抛出错误,func4 将被调用.如果我在 func2 中返回一个值,则 func3 似乎被调用.
At the moment, If I throw an error in func2, func4 would be called. If I return a value in func2, func3 seems to be called.
我正在使用 Angular $q.
I am using Angular $q.
推荐答案
使用嵌套进行分支控制流.在您的情况下,它看起来像这样:
Use nesting for branching control flow. In your case, it would look like this:
AsyncFunction().then(function(res) {
return func1(res).then(func3, func4);
}, func2);
这篇关于阻止 JavaScript Promise 的传播的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!