我試圖訪問python腳本中的查詢字符串:在bash中,我會使用${QUERY_STRING}
環境變量訪問它。如何訪問Python CGI腳本中的URL查詢字符串?
我碰到過這樣的事情:https://stackoverflow.com/a/2764822/32836,但這個劇本,由Apache2的運行:
#!/usr/bin/python
print self.request.query_string
打印什麼,在命令行中,同樣會產生這個錯誤:
$ ./testing.py
Traceback (most recent call last):
File "./testing.py", line 3, in <module>
print self.request.query_string
NameError: name 'self' is not defined
如何閱讀query_string?
http://stackoverflow.com/questions/2709821/python-self-explained – cianius