如何在Ajax Post中重定向?

时间:2016-01-30 18:40:58

标签: javascript jquery ajax

我试图在成功函数中重定向Ajax帖子

这是代码

$.ajax({
    type: "POST",
    url: "/api/create-room/",
    data:{
      targetedUser,
    },
    success: function(data) {
      // How to redirect in here??
    }
});

1 个答案:

答案 0 :(得分:3)

您可以在window.location.replace函数中使用window.location.hrefsuccess

$.ajax({
    type: "POST",
    url: "/api/create-room/",
    data:{
        targetedUser,
    },
    success: function(data) {
        window.location.replace("url"); //Simulate HTTP redirection
        //Or
        window.location.href = "url"; //Simulate click on a link
    }
});

有关详情,请查看 This post

希望这有帮助。