我正在使用烧瓶 python 框架和 Sqlite 作为数据库编写一个简单的社交媒体应用程序。但是运行程序后,它显示以下错误。我有点困惑是什么导致了这个错误。
peewee.OperationalError: Connection already open
我的计划是创建一个登录视图,以便用户可以输入他们的电子邮件和密码来登录。到目前为止,我已经创建了一个用于登录的视图,它将用户重定向回索引页面。上述错误表明我还没有关闭数据库。models.py
但是,我编写的用于连接和关闭数据库的两个函数(在 中)如下所示:
def initialize():
DATABASE.connect()
DATABASE.create_tables([User], safe=True)
DATABASE.close()
我把它叫app.py
进来models.initialize()
if __name__ == '__main__':
models.initialize()
app.run(debug=True, port=8000, host='0.0.0.0')
有了app.py
以下函数装饰器的方法:
@app.before_request
def before_request():
"""Connect to the database before each request"""
g.db = models.DATABASE
g.db.connect()
@app.after_request
def after_request(response):
"""Close the database after each request"""
g.db.close()
return response