如何解析 uri?

发布于 2024-10-08 23:40:54 字数 187 浏览 4 评论 0原文

对于 uri http://foo.com/apple/123

我想得到“123”。

根据 GAE 文档,我可以使用 self.request.get() 获取 uri,但是是否有一个帮助程序可以仅获取 uri 的部分?

For the uri http://foo.com/apple/123

I want to get '123'.

According to the GAE documentation I can get the uri using self.request.get(), however is there a helper for just grabbing the sections of the uri?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

虐人心 2024-10-15 23:40:54

是的,有 - Python 附带的 urlparse 模块。您返回的 ParseResult 将以一种很好的方式剥离主机/协议等,然后您可以使用 str 的 split() 在路径分隔符上进行拆分。

Yes there is - the urlparse module that comes with Python. The ParseResult that you get back will strip off the host/protocol and such in a nice way, and then you can just use str's split() to split on the path separator.

溺深海 2024-10-15 23:40:54

如果您使用的是 webapp,您可以“捕获”与您的处理程序匹配的正则表达式部分,并将它们作为参数传递给您的处理程序。例如:

class FooHandler(webapp.RequestHandler):
  def get(self, fruit, number):
    # Do something with your fruit and number (which are both strings, remember!)


application = webapp.WSGIApplication([
    ('/([^/]+)/(\d+)', FooHandler),
])

If you're using webapp, you can 'capture' parts of the regular expression that matches your handler, and they'll be passed to your handler as arguments. For example:

class FooHandler(webapp.RequestHandler):
  def get(self, fruit, number):
    # Do something with your fruit and number (which are both strings, remember!)


application = webapp.WSGIApplication([
    ('/([^/]+)/(\d+)', FooHandler),
])
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文