【FLASK】蓝图与session使用Redis缓存

前端之家收集整理的这篇文章主要介绍了【FLASK】蓝图与session使用Redis缓存前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
manage.py:
from BlueMap.pro_flask import create_app

app = create_app()

if __name__ == '__main__':
    app.run()

   settins.py

# debug模式
class DebugSetting(object):
    DEBUG = True
    SECRET_KEY = "debug"


 测试模式
 TesingSetting(object):
    DEBUG =tesing"

   __init__.py

 

from flask  Flask
from redis  Redis
from flask_session  Session
from BlueMap.pro_flask.views  login,index

from .settings  DebugSetting


def create_app():
    app = Flask(__name__)
    app.secret_key=1231321w13"
    app.config.from_object(DebugSetting)

     配置redis
    app.config[SESSION_TYPE'] = redis'   session类型为redis
    app.config[SESSION_REFRESH_EACH_REQUEST'] = True  SESSION_PERMANENT'] = False   如果设置为True,则关闭浏览器session就失效。
    app.config[SESSION_USE_SIGNER 是否对发送到浏览器上session的cookie值进行加密
    app.config[SESSION_KEY_PREFIXsession: 保存到session中的值的前缀
    app.config[SESSION_REDIS'] = Redis(host=127.0.0.1',port=6379)

    Session(app)
     导入蓝图
    app.register_blueprint(login.ps)
    app.register_blueprint(index.In)

    return app

 

 login.py

 Blueprint,render_template,session

ps = Blueprint(proself)  # 蓝图使用



@ps.route(/login",methods=[GETPOST])
 login():
    session[usernamewanghong"
    return 登录成功"

index.py

index)   # 蓝图使用
@In.route(/index)  index(): return session.get(')

目录结构:

 

原文链接:/flask/882516.html

猜你在找的Flask相关文章