Sako73
Sako73

Reputation: 10137

Why does a POST response of 204 (no content) trigger the Angularjs error function?

I have an Angularjs application that uses $http.post() to make web service calls. The method it calls has a void return type, and it generates a 204 (no content) response code. This goes into the error function that is defined in the .then() callback, and prints "no element found" in the log.

If I return anything from the method, it returns the normal 200 response code.

Why is a success code triggering the error function?

Code as requested:

function myFn(inputData) {
    var d = { data: inputData };
    $http.post("../api/my/serverFn", d)
        .then(
            function(response) {
                $rootScope.AddMsg("Success");
            },
            function(response) {
                 // The 204 response goes here.
                 $rootScope.AddMsg("Error");
            });
}

The requested screenshot: enter image description here

Upvotes: 6

Views: 6685

Answers (1)

JB Nizet
JB Nizet

Reputation: 691685

AngularJS doesn't natively consider a 204 response as an error. The investigation revealed that there was in fact an http interceptor in the stack that rejected the promise if the response received had a 204 status, turning the successful response into an error.

Upvotes: 7

Related Questions