美文网首页
Flask-Login 蓝图设置 session 过期时间

Flask-Login 蓝图设置 session 过期时间

作者: Yeureka | 来源:发表于2019-11-06 16:03 被阅读0次

    业务需要设置1小时未操作网页则过期重新登陆。
    因为login视图在蓝图auth.py中,在auth.py中以下设置不起作用。

    # auth.py
    auth = Blueprint('auth', __name__)
    @login.route('/login', methods=['GET', 'POST'])
    def login():
        login_user(user)
        session.permanent = True
        app.permanent_session_lifetime = timedelta(hours=1)
    

    此时只需要分别在auth.py中设置 session.permanent,在app.py中设置 app.permanent_session_lifetime 即可。

    # auth.py
    auth = Blueprint('auth', __name__)
    @login.route('/login', methods=['GET', 'POST'])
    def login():
        login_user(user)
        session.permanent = True
    
    # app.py
    app.permanent_session_lifetime = timedelta(hours=1)
    app.register_blueprint(auth, url_prefix='/auth')
    

    相关文章

      网友评论

          本文标题:Flask-Login 蓝图设置 session 过期时间

          本文链接:https://www.haomeiwen.com/subject/wdwubctx.html