处理包含斜杠的网址' /' web.py的字符

时间:2013-01-05 15:42:11

标签: python url web.py slash

我来自Flask,处理带有斜线字符的网址非常简洁:http://flask.pocoo.org/snippets/76/

我现在正在使用web.py,我也想这样做。我事先不知道url会有多少斜杠。 有什么想法吗?

1 个答案:

答案 0 :(得分:0)

可能你只能正常使用:

urls = (
    "/product/(.*)", product_handler
    )

然后产品处理程序采用单个变量:

class product_handler:
    def GET(self, url_string):
        url_pieces = url_string.split('/')
        # ...

这样的东西?