制作一个重定向页面,将用户带到 5 种表单之一(必须是随机的)

发布于 2024-12-05 18:02:47 字数 199 浏览 1 评论 0原文

所以我正在使用 Python 学习 CGI 编程,我需要创建一些表单来询问用户的输入并使用输入来显示一些结果。我将必须创建五个不同的表单(因此有不同的结果),并且我希望在结果页面上有一个“再次播放”按钮,以便当用户单击它时,他们可以被定向到五个表单之一。我读了很多关于重定向的内容,但就我而言,我不能只输入一个网址,因为我想要生成一个随机页面。我该怎么做?

谢谢你!!

So I am learning CGI programming with Python and i need to create some forms that ask input from the users and use the input to display some results. I will have to create five different forms (hence different results) and I want to have a "play again" button on the result page so that when users click on it they can be directed to one of the five forms. I read a lot on redirecting but in my case, I can't just put an url because I want a random page generated. How can I do this?

Thank you!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

没有伤那来痛 2024-12-12 18:02:47

您可以使用 python 模块random

import random
urls = [
    'form1.html',
    'form2.html',
    'form3.html',
    'form4.html',
    'form5.html',
]
redirect_to = random.choice(urls)

# then do your redirection stuff

http://docs.python.org/library/random.html

You can use the python module random.

import random
urls = [
    'form1.html',
    'form2.html',
    'form3.html',
    'form4.html',
    'form5.html',
]
redirect_to = random.choice(urls)

# then do your redirection stuff

http://docs.python.org/library/random.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文