CGI形式使用python提交按钮(CGI form submit button using pyt

2019-08-03 20:55发布

我想创建一个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')

Answer 1:

为了从你需要使用打印语句Python的CGI页面显示HTML。

下面是使用你的代码的例子。

#!/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>'


文章来源: CGI form submit button using python
标签: python cgi