好吧,所以我可能错过了一些重要的东西,但据我所知,AJAX是异步的。
当用户注册我的网站时,他将被引导到成功网站,同时在后台发送注册邮件。
我提出的代码如下:
$.ajax({
cache: false,
async: true,
type: "POST",
url: "/Account/SendRegistrationMail",
data: { //someDataNeededByController},
success: function() {
console.log("fire and ice");
}
});
window.location.href = "/Account/RegistrierenErfolgreich";
然而,在邮件发送后,用户正被重定向: https://i.stack.imgur.com/h1O8A.png