Check if Flask request context is available

2019-02-21 11:57发布

I want to log some data from context variables (request, session) when logging during a Flask request, but use default behavior if not.

I'm using a try ... except block in logging.formatter. Is there a better way to check for a request context?

try:
    record.user = session['user_name']
    record.very_important_data = request.super_secret
except Exception:
    record.user = None

1条回答
叼着烟拽天下
2楼-- · 2019-02-21 12:23

Use has_request_context or has_app_context.

if has_request_context():
    # request is active

Alternatively, current_app, g, request, and session are all instances of LocalProxy. If a proxy is not bound, it will be False when treated as a boolean.

if request:
    # request is active
查看更多
登录 后发表回答