0

我使用 Apache2 作为我的网络服务器,使用 mod_python 作为它的“解释器”。如何获取当前的 url 参数?例如:/cgi-bin/test.py?set=12

我想根据 URL 中发布的值进行操作。我查看了urlparse图书馆,但这需要 URL,我还没有。

4

1 回答 1

0
def index():  
    return "Python works!"

def command(command):  
    return "this is a command %s!" %command

正常调用页面时索引返回字符串

test.py/command?command=foo 将返回 foo

于 2012-10-08T16:01:06.217 回答