首页 > 教育学习 > 为什么 > 如何在 GAE 中获取 URL 的参数?

如何在 GAE 中获取 URL 的参数?
2012-01-19 20:23:25   来源:   点击:

    如何在 GAE 中获取 URL 的参数?例如有一个url是localhost:8080/api...,我想获取theMethod和firstParam的名称

    2 个答案

    • 答案 1:

      class MainPage(webapp.RequestHandler): def get(self): self.response.headers["Content-Type"] = "text/plain" self.response.out.write("Hello, webapp World!")在response.headers里面有,你拿到之后print headers里面的信息出来看一下就知道了。
    • 答案 2:

      如果是webapp(webob)的话: response.get("method") response.get("param")

相关热词搜索:

上一篇:意外捡到公司丢失的未发布的保密产品,传播到网络上是否构成侵犯商业秘密?
下一篇:阿尔法城前端用到了什么模版系统?