Location
jQuery1.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
ロケーションヘッダーを使用してリダイレクトするにはどうすればよいですか?