0

首先,关于flask_context 的问题包括RQ 作业的上下文似乎是常见问题,但我搜索了很多,仍然无法解决我的问题。

我的装饰器功能(在不同的变体中尝试了它们):

def redis_decorator1(f):
    def inner_wrapper(*args, **kwargs):
        # db interactions
        return res
    return inner_wrapper

def redis_decorator2(app):
    # app.app_context().push()
    def wrapper(f):
        def inner_wrapper(*args, **kwargs):
            # db interactions
            return res
        return inner_wrapper
    return wrapper



...
@redis_decorator
def under_decorator_func(*some_args)

在函数under_decorator_func 中使用flask.current_app

问题:

First decorator -  RuntimeError: "Working outside of application
context" when redis task starts.

Second decorator - Same error on app start

我也在创建应用程序后立即尝试过app.app_context().push(),所以我不知道这里发生了什么。

4

1 回答 1

0

结果证明解决方案非常明显,需要更多关于 python 上下文的知识:

app = create_app() # or anything that creates your Flask application

...


def redis_decorator2(app):
def wrapper(f):
    def inner_wrapper(*args, **kwargs):
        with app.app_context():
            # db interactions
            return res
    return inner_wrapper
return wrapper

这里重要的是在函数中使用烧瓶上下文inner_wrapper而不是上面的任何层,否则你会得到和以前一样的错误。希望它会帮助某人。

于 2021-07-09T06:32:16.590 回答