怎样在 GAE 中获取 URL 的参数

如果是webapp(webob)的话: response.get(\u0026#39;method\u0026#39;) response.get(\u0026#39;param\u0026#39;)
■网友
class MainPage(webapp.RequestHandler): def get(self): self.response.headers = \u0026#39;text/plain\u0026#39; self.response.out.write(\u0026#39;Hello, webapp World!\u0026#39;)在response.headers里面有,你拿到之后print headers里面的信息出来看一下就知道了。


    推荐阅读