即使在ajax中的302响应之后也无法重定向

时间:2014-11-09 09:39:58

标签: javascript jquery ajax post


我使用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。
还是它“不”进入成功处理程序。
看起来我错过了一些明显的东西 请帮忙。

谢谢,
山塔努

0 个答案:

没有答案