Side navigation
#11503 closed bug (invalid)
Opened March 22, 2012 08:14PM UTC
Closed March 23, 2012 12:31AM UTC
jqXHR.status and jqXHR.statusText when body is empty
Reported by: | jeroen | Owned by: | |
---|---|---|---|
Priority: | low | Milestone: | None |
Component: | misc | Version: | 1.7.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
I'm developing a REST client based on jQuery. The server often responds with informative status codes (e.g. 404, 400, 302) without sending any content in the body.
When doing an ajax request in jQuery and a server responds without sending any content in the body, the jqXHR.status contains 0. I suppose maybe when the body is empty, the request is not further parsed anymore. But actually the status code is often useful in itself, even when there is no body or error message.
I am sorry, after a long debugging session, it turned out that my server wasn't sending the Access-Control-Allow-Origin header for these responses, which explains why the request blocked. It works fine when the client and server are on the same domain.