我使用Ajax进行post调用。
$.ajax({
url : link,
type: 'POST',
success: function(data, textStatus) {
alert("success");
}
});
服务器返回302响应,位置值在响应头中 以下是响应标题(将google.com定位为测试位置)
Connection keep-alive
Content-Length 55
Content-Type text/plain; charset=UTF-8
Date Sun, 09 Nov 2014 09:28:50 GMT
Location https://www.google.com
Vary Accept
仍然没有重定向到google.com。
还是它“不”进入成功处理程序。
看起来我错过了一些明显的东西
请帮忙。
谢谢,
山塔努