如何解析 uri?
对于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,有 - Python 附带的
urlparse
模块。您返回的ParseResult
将以一种很好的方式剥离主机/协议等,然后您可以使用 str 的split()
在路径分隔符上进行拆分。Yes there is - the
urlparse
module that comes with Python. TheParseResult
that you get back will strip off the host/protocol and such in a nice way, and then you can just use str'ssplit()
to split on the path separator.如果您使用的是 webapp,您可以“捕获”与您的处理程序匹配的正则表达式部分,并将它们作为参数传递给您的处理程序。例如:
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: