Python 只是一种语言,要获得 GET 和 POST 数据,您需要一个用 Python 编写的 Web 框架或工具箱。正如 Charlie 指出的那样,Django 是其中之一,cgi 和 urllib 标准模块是其他模块。还有 Turbogear、 Pylons、 CherryPy、 web.py、 mod _ python、 fastcgi 等等。
class SomeHandler(webapp2.RequestHandler):
def post(self):
name = self.request.get('username') # this will get the value from the field named username
self.response.write(name) # this will write on the document
import os, sys
# the query string, which contains the raw GET data
# (For example, for http://example.com/myscript.py?a=b&c=d&e
# this is "a=b&c=d&e")
os.getenv("QUERY_STRING")
# the raw POST data
sys.stdin.read()