制作一个重定向页面,将用户带到 5 种表单之一(必须是随机的)
所以我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 python 模块
random
。http://docs.python.org/library/random.html
You can use the python module
random
.http://docs.python.org/library/random.html