$q one function to handle both success and callback

59 Views Asked by At

I have one function processResponse that has logic to handle both successful and failed response. Now I use it like this:

return $http.get(url).then(processResponse, processResponse).then(function (data) {});

Is there any way to use $q in a way so that I specify the function only once?

1

There are 1 best solutions below

0
On BEST ANSWER

The answer is no, although if you want to run common code regardless of the result of your promise you can use finally