Python-Flask默认路由可能吗?
在Cherrypy中,可以这样做:
@cherrypy.exposedef 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 ruleYou want path:
% curl 127.0.0.1:5000/foo/bar # Matches the second rule
You want path: foo/bar
以上是 Python-Flask默认路由可能吗? 的全部内容, 来源链接: utcz.com/qa/418431.html