python | flask 捕获任意路由
参考文章:https://www.codenong.com/15117416/
方式如下:
@app.route('/', defaults={'path': ''})
@app.route('/<path:path>')
def get_dir(path):
return path
标签:python,捕获,flask,path,app,路由
From: https://www.cnblogs.com/Mz1-rc/p/16774803.html