我试图在ajax响应中检测302重定向:
$(document).on("pfAjaxComplete", function(event, xhr, options) {
console.log("complete",event, xhr, options);
});
这对于正常的ajax请求工作正常,但是当我得到302响应xhr对象为空时:
readyState 0
responseText ""
responseXML null
status 0
statusText "error"
如何检测302响应?我使用的是PF 4.0