我正在使用python和apache2。
我想写一个名为test.py的脚本,当在http://example.com/test.py?foo=bar访问时,打印字符串'bar'
我认为它应该是这样的:
def index(req):
return idontknow.foo
idontknow.foo是我要问的部分。
答案 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')