python - 关于 Flask Blueprint 中的 after_request

查看:160
本文介绍了python - 关于 Flask Blueprint 中的 after_request的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

问 题

after_request 是不是只对一个Blueprint 有效.

base_blueprint = Blueprint('api', __name__)


@base_blueprint.route('/')
def index():
    return "hello "


@base_blueprint.after_request
def hook_header(response):
    if request.method == 'GET':
        response.headers['Access-Control-Allow-Origin'] = '*'
        print('Access-Control-Allow-Origin')
    return response

我有多个 Buleprint 注册后只对base_blueprint 这个Blueprint生效 ...

有什么方法注册一次 全部的Blueprint 全部生效.

解决方案

after_app_request

http://flask.pocoo.org/docs/0...

好水的问题

这篇关于python - 关于 Flask Blueprint 中的 after_request的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆