使用python的CGI表单提交按钮

时间:2012-12-11 05:34:49

标签: python cgi

我正在尝试创建一个允许用户输入单词的cgi表单,然后它将接受该单词并将其发送到下一页(另一个cgi)。我知道如何使用.html文件来完成它但是在使用python / cgi时我很迷失。

这是我需要做的,但它是在html中。

<html>
<h1>Please enter a keyword of your choice</h1>
<form action="next.cgi" method="get">
Keyword: <input type="text" keyword="keyword">  <br />
<input type="submit" value="Submit" />
</form>
</html>

有谁知道如何使用cgi创建提交按钮?这是我到目前为止所拥有的。

import cgi
import cgitb
cgitb.enable()


form = cgi.FieldStorage()

keyword = form.getvalue('keyword')

1 个答案:

答案 0 :(得分:5)

要从Python cgi页面显示html,您需要使用print语句。

以下是使用您的代码的示例。

#!/home/python
import cgi
import cgitb
cgitb.enable()

print 'Content-type: text/html\r\n\r'
print '<html>'
print '<h1>Please enter a keyword of your choice</h1>'
print '<form action="next.cgi" method="get">'
print 'Keyword: <input type="text" name="keyword">  <br />'
print '<input type="submit" value="Submit" />'
print '</form>'
print '</html>'

然后在您的next.cgi页面上,您可以获取表单提交的值。类似的东西:

#!/home/python
import cgi
import cgitb
cgitb.enable()

form = cgi.FieldStorage()

keyword = form.getvalue('keyword')

print 'Content-type: text/html\r\n\r'
print '<html>'
print keyword
print '</html>'