我试图在成功函数中重定向Ajax帖子
这是代码
$.ajax({
type: "POST",
url: "/api/create-room/",
data:{
targetedUser,
},
success: function(data) {
// How to redirect in here??
}
});
答案 0 :(得分:3)
您可以在window.location.replace
函数中使用window.location.href
或success
:
$.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 。
希望这有帮助。