我想让Flask Blueprint在执行任何路由之前始终运行一个方法.我没有用自定义装饰器装饰我的蓝图中的每个路线方法,而是希望能够做到这样的事情:
def my_method():
do_stuff
section = Blueprint('section', __name__)
# Register my_method() as a setup method that runs before all routes
section.custom_setup_method(my_method())
@section.route('/two')
def route_one():
do_stuff
@section.route('/one')
def route_two():
do_stuff
然后,基本上都/section/one
和/section/two
运行my_method()
在执行代码之前route_one()
或route_two()
.
有没有办法做到这一点?
您可以使用before_request装饰器来获取蓝图.像这样:
@section.before_request def my_method(): do_stuff
这会自动注册要在属于蓝图的任何路由之前运行的函数.