业务需要设置 1 小时未操作网页则过期重新登陆。
因为 login 视图在蓝图 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 = Blueprint('auth', __name__)
@login.route('/login', methods=['GET', 'POST'])
def login():
login_user(user)
session.permanent = True
app.permanent_session_lifetime = timedelta(hours=1)
app.register_blueprint(auth, url_prefix='/auth')
评论区