3

我正在尝试创建一个 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')
4

1 回答 1

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>'
于 2012-12-11T06:55:05.703 回答