admin管理员组

文章数量:1530353

SQLALCHEMY 出现FSADeprecationWarning问题解决

  • 问题描述
  • 问题解决

问题描述

FSADeprecationWarning: SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future. Set it to True or False to suppress this warning. 'SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and ’ …

问题解决

在config.py中加上2行即可:

SQLALCHEMY_TRACK_MODIFICATIONS = True
SQLALCHEMY_COMMIT_TEARDOWN = True

保存,重RUN,warning已消失:

本文标签: flaskSQLALCHEMYFSADeprecationWarning