我正在使用 Ajax 将表单数据提交到另一个页面,然后将浏览器重定向到该页面。这是我正在使用的代码:
$(".step").submit(function(e){
e.preventDefault();
$.ajax({
url: "/dashboard/step2/",
type: "post",
data: paramObj,
success: function(response){
console.log(response);
window.location.href="/dashboard/step2/";
}
});
});
但是,此代码发送一个 POST 和一个 GET 请求。这会导致其他问题,因为我有其他功能依赖于唯一发送的请求是 POST 请求这一事实。有什么想法或建议吗?