What happens if the browser receives a redirect response to an ajax request?
|
|
What happens if the browser receives a redirect response to an ajax request? Nothing happens. Specifically, the browser doesn't follow the location offered by a redirect response in the same way as it would with a synchronous request. But you can do whatever you like in javascript with the response. A particular ajax library may handle this case in a specific way, and you should refer to the specific documentation of your Ajax library to see if there is a conventional way for you to deal with this case, such as a callback method for 300-level response codes. The following illustration fires a raw Ajax to a script which is serving redirect headers. Note the status code of the response as it comes back. It will reflect the HTTP Status Code of the server response.
You can emulate these tests yourself with a simple server-side script:
Sidenote: A similar question would be: What happens if an ajax request is redirected? On the server, the request can be redirected or changed internally. Whatever the server ultimately sends back as a response will serve as your Ajax response. This may or may not include a redirect header. |
||||||||
|
|
|
the ajax-request will follow that redirect afaik. The actual content (.responseText, .responseXML) will be the content from the page you are redirected to. You might be able to intercept the redirect (status-code, location-header) on readyState 2 or 3, but not sure about it. |
||
|
|
