一尘不染

Python-Flask默认路由可能吗?

flask

在Cherrypy中,可以这样做:

@cherrypy.expose
def default(self, url, *suburl, **kwarg):
    pass

阅读 516

收藏
2020-04-06

共1个答案

一尘不染

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
2020-04-06