我正在尝试填补一些解决一系列远程调用的本地数据。
当每个承诺得到解决时,我加载数据并继续。
当每个承诺得到解决时,我加载数据并继续。
方法$ q.all([])正是这样做的:
$q.all([
this.getUserInfo(11)
.then(function (r) {
results.push(r)
}),this.getUserConns()
.then(function (r) {
results.push(r)
}),this.getUserCtxs()
.then(function (r) {
results.push(r)
})
])
.then(function () {
console.log(results)
})
问题是,这段代码没有弹性。
如果这些呼叫中的任何一个失败,没有人得到鱼!
将调用包装在try / catch语句中,简单地导致$ q.all()完全忽略该条目,即使没有失败(请注意func中的console.log)…
$q.all([
this.getUserInfo2(11)
.then(function (r) {
results.push(r)
}),function () {
try {
this.getUserGroups()
.then(function (r) {
console.log(r)
results.push(r)
})
}
catch (err) {
console.log(err)
}
},])
.then(function () {
console.log(results)
})
输出:
[Object]
任何提示我如何包装它是有弹性的?
感谢@dtabuenc,我已经走了一步。
实现错误回调,我可以避免破坏链,并推动已解决的承诺的值。但是,令人讨厌的异常仍然显示在控制台上
如果我无法尝试/捕获异步请求,我该如何解决?来电显示
return $q.all([ this.getUserInfo(user_id) .then(function (r) { results['personal_details'] = r }),this.getUserConns() .then( function (r) { results['connections'] = r },function(err) { console.log(err) }) ]) .then(function () { return (results) })代码(注入异常)
getUserConns: function() { return __doCall( ws.getUserConnections,{} ) .then( function(r) { // very generic exception injected throw new Error if (r && r.data['return_code'] === 0) { return r.data['entries'] } else { console.log('unable to retrieve the activity - err: '+r.data['return_code']) return null } }) },
这将工作,但也将错误推送到阵列。
function push(r) {
results.push(r);
}
$q.all([
this.getUserInfo(11).then(push).catch(push),this.getUserConns().then(push).catch(push),this.getUserCtxs().then(push).catch(push)
])
.then(function () {
console.log(results);
})
你也应该提高你对承诺的理解,你永远不应该使用try-catch的承诺 – 当使用promises,你使用.catch()方法(其他一切都是隐含的尝试)。这适用于正常错误以及异步错误。
如果你想完全忽略错误:
function push(r) {
results.push(r);
}
function noop() {}
$q.all([
this.getUserInfo(11).then(push).catch(noop),this.getUserConns().then(push).catch(noop),this.getUserCtxs().then(push).catch(noop)
])
.then(function () {
console.log(results);
})