我正在尝试创建一个 python 程序,该程序将从使用 html 的表单接收信息。
这就是我的 html 代码。
<html>
<head>
<title> NBA Survey! </title></head>
<form method = "POST" action = "result.py">
<hr>
Who do you think is the best Small Forward in the NBA right now? <br>
<input type="radio" name="9" value="Chris Paul"> Chris Paul <br>
<input type="radio" name="9" value="Tony Parker"> Tony Parker <br>
<input type="radio" name="9" value="Stephen Curry"> Stephen Curry <br>
<input type="radio" name="9" value="Rajon Rondo"> Rajon Rondo <br>
<input type="radio" name="9" value="Derrick Rose"> Derrick Rose <br>
<input type="radio" name="9" value="Kyrie Irving"> Kyrie Irving <br>
<input type="radio" name="9" value="Russell Westbrook"> Russell Westbrook <br>
<input type="radio" name="9" value="Other"> Other <br>
<input type="submit" name="submit" value="submit">
</form>
</body>
</html>
对于python中的代码,这是我到目前为止所拥有的。
#!/usr/bin/python
import cgitb; cgitb.enable()
import cgi
import sys
form = cgi.FieldStorage()
if form.getvalue('9') = 'Chris Paul':
f1.write('Chris Paul')
f2 = open('results.txt','a')
g2 = f2.read().split(',')
page += 'Chris Paul: ' + g2.count('Chris Paul')
我正在尝试创建一个 python 页面,在我点击 html 页面上的提交后,它会将用户重定向到一个新页面,其中将显示调查结果。调查将在其他人可以投票的服务器上进行。
该页面如下所示:
克里斯保罗:(票数)
托尼帕克:(票数)等......
所有帮助将不胜感激。提前致谢!