登录
首页 >  文章 >  python教程

Flask-SQLAlchemy 工程化时,如何避免\"The setup method \'shell_context_processor\' can no longer be called on the application\"错误?

时间:2024-11-22 15:04:06 109浏览 收藏

一分耕耘,一分收获!既然都打开这篇《Flask-SQLAlchemy 工程化时,如何避免\"The setup method \'shell_context_processor\' can no longer be called on the application\"错误?》,就坚持看下去,学下去吧!本文主要会给大家讲到等等知识点,如果大家对本文有好的建议或者看到有不足之处,非常欢迎大家积极提出!在后续文章我会继续更新文章相关的内容,希望对大家都有所帮助!

Flask-SQLAlchemy 工程化时,如何避免\

flask-sqlalchemy 工程化遇到的问题

官方文档中使用 app.py 直接初始化数据库的示例虽然简单,但在实际项目中并不可行。将数据库初始化代码封装到单独的文件中并引入时,可能会出现错误:

nexpect system error - the setup method 'shell_context_processor' can no longer be called on the application. it has already handled its first request, any changes will not be applied consistently.
make sure all imports, decorators, functions, etc. needed to set up the application are done before running it.

该错误提示表明 flask 应用程序已经处理了第一个请求,无法再进行配置更改。这通常发生在引入数据库代码后,因为 current_app 和 current_request 等 current 对象仅存在于 flask 应用程序的上下文中。

解决方案

要解决此问题,需要在文件中使用自己的应用程序对象,而不是 current_app:

a.py

from flask import flask
from flask_sqlalchemy import sqlalchemy

app = flask(__name__)
db = sqlalchemy()

setting = app.config["database"]
app.config["sqlalchemy_database_uri"] = f'mysql+pymysql://{setting["db_user"]}:{setting["db_pass"]@{setting["db_host"]}/{setting["db_name"]}'

db.init_app(app)

b.py

from model.user import User
from a import DB, app

class Account:

    @staticmethod
    def login(username, password):
        with app.test_context():
            user = DB.session.execute(DB.select(User).filter_by(name=username)).scalar_one()

        return "token"

通过将 app 作为上下文本管理器,我们可以模拟真实应用程序的上下文,从而正确初始化数据库并使用 current 对象。

到这里,我们也就讲完了《Flask-SQLAlchemy 工程化时,如何避免\"The setup method \'shell_context_processor\' can no longer be called on the application\"错误?》的内容了。个人认为,基础知识的学习和巩固,是为了更好的将其运用到项目中,欢迎关注golang学习网公众号,带你了解更多关于的知识点!

相关阅读
更多>
最新阅读
更多>
课程推荐
更多>