Similar to exception handling in .NET the Q promise module inside Angular.js supports a try/catch/finally construct. However as ‘finally’ is a reserved keyword in JavaScript, you have to use the indexer to access the finally function:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
applicationsService.getApplications().then(function (response) { | |
$scope.applications = response.data; | |
}).catch(function (data) { | |
$scope.applications = null; | |
})['finally'](function () { | |
$scope.isBusy = false; | |
}); |