我从 python CGI 编程开始,在 apache2 中使用 mod_python,并试图将 HTTP 请求中的 GET 字段检索到一个简单的 .py 页面。
编码:
#!/usr/bin/python
import cgi
import cgitb; cgitb.enable()
print 'Content-type: text/html\n'
print '''
<html>
<body>
'''
form = cgi.FieldStorage()
l = len(form.keys())
print "<p>%s field(s) set.</p>" % l
print '''
</body>
</html>
'''
页面打印“0 个字段集”。这里有什么问题?到目前为止,在我寻找答案的过程中,我还没有在 apache2 的 mod_python 中找到会阻止将 GET 字段传输到 CGI 脚本的参数。