flask_login异常:AttributeError: 'User' object has no attribute 'is_active'

Flask开发中报错:AttributeError: 'User' object has no attribute 'is_active' 原因是 User 类没有继承 UserMixin,修改如下: class User(UserMixin...
我的笔记