我正在使用flask登录https://github.com/maxcountryman/flask-login并且login_user中的字段remember似乎不起作用。
每次重新启动apache后会话都会被破坏..理想情况下,remember字段应该处理这个。。甚至会话值也会被破坏。这真是令人沮丧。。。任何知道解决方案的人请ping。。谢谢
我正在使用登录用户
login_user(user, remember=True)
最佳答案
如果有人遇到这个问题,您必须正确地编写函数user_loader。
@login_manager.user_loader
def load_user(id):
return "get the user properly and create the usermixin object"