我的应用程序上有一个登录窗口。用户输入登录详细信息,并将其发送到服务器,如下所示:
$.ajax({
url: href,
dataType: 'json',
type: 'POST',
data: form.serializeArray(),
success: function (json, textStatus, XMLHttpRequest) {
json = json || {};
if (json.success) {
switch (action) {
case "xxx":
<more code here>
default:
location = json.redirect || location.href;
}
} else {
当我跟踪代码时,我看到它转到以“location =”开头的行。我看到 json.redirect 设置为 null 并且 location.href 设置为当前 URL。
我希望它重定向到正确的 URL,但是当我允许代码继续时,它什么也不做,也不会转到任何新的 URL。
我做重定向的方式是否遗漏了什么?