【发布时间】:2018-11-10 11:06:26
【问题描述】:
我想创建一个通过 url 获取命令的应用程序引擎。如何从处理程序中访问 URL?
class Handler:
def get(self):
url = ? #Here I want to access the url and parse it
self.response.write(url)
def main():
application = webapp.WSGIApplication([
('/get', Handler)])
【问题讨论】:
标签: python http google-app-engine url url-parameters