Angularjs promise rejection chaining

前端 未结 2 951
刺人心
刺人心 2020-12-24 12:15

I need to create chained promises:

var deferred = $q.defer();
$timeout(function() {
    deferred.reject({result: \'errror\'});
}, 3000);
deferred.promise.the         


        
2条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-24 13:01

    Late to the party, but as I am here;

    I prefer to use the $http error for its native error handling, rather than returning a success via a 200 and an error status in the response.

    printing 400 or 500 errors in the console is not an issue, if you are debugging you see them if not you don't.

    angular.module('workModule', [])
    
    // work provider handles all api calls to get work
    .service('workProvider', ['$http', '$q', function($http, $q) {
    
        var endpoint = '/api/v1/work/';
    
        this.Get = function(){
            // return the promise, and use 404, 500, etc for errors on the server
            return $http.get(endpoint);
        };
    
    }])
    
    .controller('workController', ['workProvider', function('workProvider'){
    
        workProvider.Get().then(
            function(response){ // success
                console.log(response.data);
            },
            function(response){ // error
                 console.log(response.data);           
            }
        )
    
    }])
    

提交回复
热议问题