在Cherrypy中,可以这样做:
@cherrypy.expose def default(self, url, *suburl, **kwarg): pass
Flask网站上有一个片段,涉及烧瓶的“全包”路线。
基本上,装饰器通过链接两个URL过滤器来工作。页面上的示例是:
@app.route('/', defaults={'path': ''}) @app.route('/<path:path>') def catch_all(path): return 'You want path: %s' % path
这会给你:
% curl 127.0.0.1:5000 # Matches the first rule You want path: % curl 127.0.0.1:5000/foo/bar # Matches the second rule You want path: foo/bar