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 に答える