admin管理员组文章数量:1340634
I have an array of promises and each promise calls http.get()
.
var items = ["URL1", "URL2", "URL3"];
var promises = [];
//on each URL in items array, I want to create a promise and call http.get
items.forEach(function(el){
return promises.push($http.get(el));
});
var all = $q.all(promises);
all.then(function success(data){
console.log(data);
}).catch(function(reason){
console.log("reason is", reason);
});
what's happening in my case
URL2.get
does not get resolved, and it immediately triggers the catch()
in the $q.all
. As a result of this failure all.then()
never gets invoked.
what I want
I want all the promises to continue even if one of the promise is rejected.
I found a similar post but the solution suggests to use another angular pacakage called Kris Kowal's Q. so I'm wondering how can I achieve it without using external package?
I have an array of promises and each promise calls http.get()
.
var items = ["URL1", "URL2", "URL3"];
var promises = [];
//on each URL in items array, I want to create a promise and call http.get
items.forEach(function(el){
return promises.push($http.get(el));
});
var all = $q.all(promises);
all.then(function success(data){
console.log(data);
}).catch(function(reason){
console.log("reason is", reason);
});
what's happening in my case
URL2.get
does not get resolved, and it immediately triggers the catch()
in the $q.all
. As a result of this failure all.then()
never gets invoked.
what I want
I want all the promises to continue even if one of the promise is rejected.
I found a similar post but the solution suggests to use another angular pacakage called Kris Kowal's Q. so I'm wondering how can I achieve it without using external package?
Share Improve this question edited May 23, 2017 at 11:53 CommunityBot 11 silver badge asked May 16, 2016 at 5:25 Wild WidowWild Widow 2,5494 gold badges23 silver badges34 bronze badges 3- See stackoverflow./questions/31424561/… – guest271314 Commented May 16, 2016 at 5:30
- @guest271314 thank you will check it out – Wild Widow Commented May 16, 2016 at 5:55
- I'm not sure why someone downvoted this question? – Wild Widow Commented May 16, 2016 at 5:55
3 Answers
Reset to default 9a simple hack might be adding a catch block to promises that return null, and filtering the null results from you promise.all
result, something like:
let items = ["URL1", "URL2", "URL3"]
, promises = items.map(url => $http.get(url).catch(e => null))
, all = $q.all(promises).then(data => data.filter(d => !!d))
all.then(data => {
// do something with data
}).catch(e => {
// some error action
})
same thing in ES5:
var items = ["URL1", "URL2", "URL3"]
, promises = items.map(function(url){
return $http.get(url).catch(function(e){return null})
})
, all = $q.all(promises).then(function(data){
return data.filter(function(d){return !!d}) // filter out empty, null results
})
all.then(function(data){
// do something with data
}).catch(function(e){
// some error action
})
Here's an ES6 patible version of .settle()
which allows all promises to finish and you can then query each result to see if it succeeded or failed:
// ES6 version of settle
Promise.settle = function(promises) {
function PromiseInspection(fulfilled, val) {
return {
isFulfilled: function() {
return fulfilled;
}, isRejected: function() {
return !fulfilled;
}, isPending: function() {
// PromiseInspection objects created here are never pending
return false;
}, value: function() {
if (!fulfilled) {
throw new Error("Can't call .value() on a promise that is not fulfilled");
}
return val;
}, reason: function() {
if (fulfilled) {
throw new Error("Can't call .reason() on a promise that is fulfilled");
}
return val;
}
};
}
return Promise.all(promises.map(function(p) {
// make sure any values or foreign promises are wrapped in a promise
return Promise.resolve(p).then(function(val) {
return new PromiseInspection(true, val);
}, function(err) {
return new PromiseInspection(false, err);
});
}));
}
This can be adapted for the Q library like this:
// Q version of settle
$q.settle = function(promises) {
function PromiseInspection(fulfilled, val) {
return {
isFulfilled: function() {
return fulfilled;
}, isRejected: function() {
return !fulfilled;
}, isPending: function() {
// PromiseInspection objects created here are never pending
return false;
}, value: function() {
if (!fulfilled) {
throw new Error("Can't call .value() on a promise that is not fulfilled");
}
return val;
}, reason: function() {
if (fulfilled) {
throw new Error("Can't call .reason() on a promise that is fulfilled");
}
return val;
}
};
}
return $q.all(promises.map(function(p) {
// make sure any values or foreign promises are wrapped in a promise
return $q(p).then(function(val) {
return new PromiseInspection(true, val);
}, function(err) {
return new PromiseInspection(false, err);
});
}));
}
Usage with your particular code:
var items = ["URL1", "URL2", "URL3"];
$q.settle(items.map(function(url) {
return $http.get(url);
})).then(function(data){
data.forEach(function(item) {
if (item.isFulfilled()) {
console.log("success: ", item.value());
} else {
console.log("fail: ", item.reason());
}
});
});
Note: .settle()
returns a promise that always resolves, never rejects. This is because no matter how many promises you pass it reject, it still resolves, but returns the info on which promises you passed it resolves or rejected.
i wrapped the $resource in $q with only resolve state
var promises = [
$q(function (resolve) {
Me.get({params: 12}).$promise.then(function (data) {
resolve(data);
}, function (err) {
resolve(err);
});
}),
$q(function (resolve) {
Me.get({params: 123}).$promise.then(function (data) {
resolve(data);
}, function (err) {
resolve(err);
});
}),
$q(function (resolve) {
Me.get({params: 124}).$promise.then(function (data) {
resolve(data);
}, function (err) {
resolve(err);
});
})];
and then use $q.all to promises
本文标签: javascripthow to continue with qall() when some promises failStack Overflow
版权声明:本文标题:javascript - how to continue with $q.all() when some promises fail - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743646961a2515673.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论