vote up 2 vote down star
1

What happens if the browser receives a redirect response to an ajax request?

flag

47% accept rate

2 Answers

vote up 3 vote down check

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.

<html>
<head>
<title>Raw Ajax Request (W3C Model)</title>
</head>
<body>
<script type="text/javascript">
window.onload = function () {

    /*	Note: 
    	This is a raw example of an Ajax request, following the W3C model.
    	It should be used for illustration purposes only, and is not a good 
    	example of a robust Ajax communication request.		
    */

    var xhr = new XMLHttpRequest();
    xhr.open("POST", 'http://www.mysite.com/response-test', true);
    xhr.setRequestHeader("Content-Type", "application/json");
    xhr.onreadystatechange = function () {
    	try {
                console.log(xhr.readyState + ':' + xhr.status);
    	}
    	catch (e) {
                console.log(e);
    	}
    };
    xhr.send('{ "responseCode": 302 }');
};

</script>
</body>
</html>

You can emulate these tests yourself with a simple server-side script:

<?php
// Redirect to a location on a different domain.
header ("Location:http://www.stackoverflow.com/");
exit;
?>

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.

link|flag
Usually a redirect issues a 30x response to the browser with a corresponding location: header, meaning it's the browser that actually needs to follow the redirect. The server might even sent content in the 30x response, but it will never be visible. – jishi Nov 11 '08 at 23:13
That's right. 30X responses may contain a Location as well: w3.org/Protocols/rfc2616/… – keparo Nov 12 '08 at 0:06
1  
For 30x status codes RFC2616 sais the "URI SHOULD be given by the Location" header. Where SHOULD is used in the meaning as defined in RFC 2119. In practice browser may safley assume that any server's 30x response also contains a Location header. – mkoeller Nov 12 '08 at 13:45
vote up 2 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.