是否有Python的$ _GET []和$ _POST []相当于Python?

时间:2014-02-18 10:25:49

标签: python apache2

我正在使用python和apache2。

我想写一个名为test.py的脚本,当在http://example.com/test.py?foo=bar访问时,打印字符串'bar'

我认为它应该是这样的:

def index(req):

    return idontknow.foo

idontknow.foo是我要问的部分。

1 个答案:

答案 0 :(得分:1)

您可以使用fieldstorage in cgi作为例:

如果网址是:

hello_get.py?first_name=ABC&last_name=XYZ

#!/usr/bin/python

# Import modules for CGI handling 
import cgi, cgitb 

# Create instance of FieldStorage 
form = cgi.FieldStorage() 

# Get data from fields
first_name = form.getvalue('first_name')
last_name  = form.getvalue('last_name')