Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

angularjs

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

like image 528
Sako73 Avatar asked Nov 11 '15 16:11

Sako73


1 Answers

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.

like image 180
JB Nizet Avatar answered Oct 23 '22 10:10

JB Nizet