我想使用Location
带有 jQuery 1.7 的标头重定向到目标。
我的代码看起来像这样
$('#creationLink').click(function(){
$.ajax({
type: 'POST',
url: '/',
success: function(data, textStatus, xhr) {
window.location = xhr.getResponseHeader("Location");
}
})
});
...但它不起作用。xhr.getResponseHeader("Location")
一片空白。
HTTP 标头:
POST / HTTP/1.1
Host: localhost:9000
X-Requested-With: XMLHttpRequest
Content-Length: 0
HTTP/1.1 302 Found
Content-Type: text/plain; charset=utf-8
Location: http://localhost:9000/vIRdD0PdWp4/bearbeiten
Content-Length: 0
如何使用位置标头重定向?