简体   繁体   中英

AngularJS HTTP error codes with $q.all()?

I have a bunch of http requests like this:

$q.all([$http({
    method: 'POST',
    url: urlOne,
    headers: {Authorization: "Token " + jqToken}
}), $http({
    method: 'POST',
    url: urlTwo,
    headers: {Authorization: "Token " + jqToken}
})])
    .then(function (results) {
        //do stuff
    });

However urlOne and urlTwo (and a bunch of others) may under some conditions return 403. In this case everything just freezes and then() function is never executed. How can I handle 403 responses? Thanks.

It sounds like you need to handle errors.

$q.all([...])
  .then(
    function (results) {
      // Handle success
    }, function (err) {
      // Handle errors
    });

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM