gpt4 book ai didi

javascript - 保存到数据库并重定向到新网址

转载 作者:行者123 更新时间:2023-12-03 11:31:36 24 4
gpt4 key购买 nike

我使用 jQuery 实现了在线测验。我有一个具体要求,想在测验结束时实现。

if (number_of_answered_questions == total_questions) {
save the score to the database;
redirect to redirect_url;
}

这个redirect_url取决于分数。 (例如:如果 score < 10 ,则重定向到 page1.html;如果 10 < score < 15 ,则重定向到 page2.html)

我尝试使用jQuery.post ,但我不确定如何在同一个“帖子”中实现两者。我如何在 jQuery 中实现这两个任务?

我无法在重定向页面中编写“保存到数据库”的逻辑,因为它们不断变化。 (我的意思是管理员可以更改重定向页面)。

最佳答案

您可以通过修改window.location.href来触发JS中的重定向。您只需将伪代码/条件更改为 JS 等效项,然后相应地修改 href 即可在保存成功完成后进行重定向(即在 post 的回调中)方法)。

var total_questions = ...;
var number_of_answered_questions = ...;
var score = ...;

// other quiz logic...

var postData = { "score": score, ... };

if (number_of_answered_questions == total_questions) {
$.post("/saveScores.php", postData, function() {
if (score < 10) {
window.location.href = "page1.html"
}
else if (10 < score && score < 15) {
window.location.href = "page2.html";
}
});
}

关于javascript - 保存到数据库并重定向到新网址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26708473/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com