我正在使用以下用python编写的cgi脚本来运行HTTP服务器。它的工作正常。在发出请求时调用do_POST函数。但是我无法在服务器端接收post变量。我试图通过这些语句获取post变量(找到它们here):
postData = cgi.FieldStorage()
fname = postData.getvalue("fname")
当我打印fname和postData时。我得到以下输出:
FieldStorage(None, None, [])
None
完整的脚本是:
from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer
import SocketServer
import cgi
class S(BaseHTTPRequestHandler):
def _set_headers(self):
self.send_response(200)
self.send_header('Content-type', 'text/html')
self.end_headers()
def do_GET(self):
self._set_headers()
self.wfile.write("<html><body><h1>hi!</h1></body></html>")
def do_HEAD(self):
self._set_headers()
def do_POST(self):
self._set_headers()
postData = cgi.FieldStorage()
print postData
print postData.getvalue("fname")
self.wfile.write("<html><body><h1>POST!</h1></body></html>")
def run(server_class=HTTPServer, handler_class=S, port=80):
server_address = ('', port)
httpd = server_class(server_address, handler_class)
print 'Starting httpd...'
httpd.serve_forever()
if __name__ == "__main__":
from sys import argv
if len(argv) == 2:
run(port=int(argv[1]))
else:
run()
我试图通过以下两种方式提出发布请求。
1) curl -d "fname=bar&lname=baz" http://localhost
2) By using following HTML page:
<form action="http://localhost" method="post">
First name: <input type="text" name="fname"><br>
Last name: <input type="text" name="lname"><br>
<input type="submit" value="Submit">
</form>
在两种方式中,客户端都会收到正确的响应,但是服务器端无法访问post变量。任何帮助表示赞赏。