1.python执行创建数据库迁移flask db init报“AttributeError: ‘SQLAlchemy‘ object has no attribute ‘after_request‘

1.python执行创建数据库迁移flask db init报“AttributeError: ‘SQLAlchemy‘ object has no attribute ‘after_request‘_第1张图片

报错原因是app->init.py 中代码段CORS(db)写错了,改为CORS(app)即可

1.python执行创建数据库迁移flask db init报“AttributeError: ‘SQLAlchemy‘ object has no attribute ‘after_request‘_第2张图片

 

重新执行创建数据库迁移命令flask db init成功

 1.python执行创建数据库迁移flask db init报“AttributeError: ‘SQLAlchemy‘ object has no attribute ‘after_request‘_第3张图片

记录下来,方便以后查看,也为广大阅读者提供方便。贵在坚持! 

你可能感兴趣的:(python,数据库)