首页 技术 正文
技术 2022年11月11日
0 收藏 537 点赞 3,049 浏览 1122 个字

flask之Flask-session三方组件

 from flask import Flask, views, render_template,  request, session, redirect
import redis as redis #pip install redis
from flask_session import Session#pip install Flask-session app = Flask(__name__) #使用第三方组件Flask-session就不需要设置secret_key
# app.secret_key = 'wertyui234567gf!@#$%^&*(' app.config['SESSION_TYPE']='redis'#配置数据库类型
app.config['SESSION_REDIS']=redis.Redis(host='127.0.0.1',port=6379,db=6)#连接数据库,db为redis数据库的分区,一共有0-15(默认为0)16个区
Session(app)#自定义启用当前Flask实例session配置 class Login(views.MethodView):
def get(self):
print(request.cookies)
return render_template('login.html') def post(self):
username = request.form.get('username')
pwd = request.form.get('pwd')
if username == 'yang' and pwd == '':
session['username'] = 'yang'#直接再使用session,生成随机字符串sessionid,
# 拼接SESSION_COOKIE_NAME+':'+seesionid得到一个字符串充当reids数据库中的key,
#通过pickle序列化key得到val,以key:val存在redis中,
#同时写入cookie返回给客户端cookie:{SESSION_COOKIE_NAME:sessionid} return redirect('/index')
else:
return '账号或密码有误!!!!' def index():
if session.get('username'): return 'index'
else:
return redirect('/login') app.add_url_rule('/login', view_func=Login.as_view(name='login'))
app.add_url_rule('/index',view_func=index)
if __name__ == '__main__':
app.run()
相关推荐
python开发_常用的python模块及安装方法
adodb:我们领导推荐的数据库连接组件bsddb3:BerkeleyDB的连接组件Cheetah-1.0:我比较喜欢这个版本的cheeta…
日期:2022-11-24 点赞:878 阅读:9,494
Educational Codeforces Round 11 C. Hard Process 二分
C. Hard Process题目连接:http://www.codeforces.com/contest/660/problem/CDes…
日期:2022-11-24 点赞:807 阅读:5,907
下载Ubuntn 17.04 内核源代码
zengkefu@server1:/usr/src$ uname -aLinux server1 4.10.0-19-generic #21…
日期:2022-11-24 点赞:569 阅读:6,740
可用Active Desktop Calendar V7.86 注册码序列号
可用Active Desktop Calendar V7.86 注册码序列号Name: www.greendown.cn Code: &nb…
日期:2022-11-24 点赞:733 阅读:6,495
Android调用系统相机、自定义相机、处理大图片
Android调用系统相机和自定义相机实例本博文主要是介绍了android上使用相机进行拍照并显示的两种方式,并且由于涉及到要把拍到的照片显…
日期:2022-11-24 点赞:512 阅读:8,133
Struts的使用
一、Struts2的获取  Struts的官方网站为:http://struts.apache.org/  下载完Struts2的jar包,…
日期:2022-11-24 点赞:671 阅读:5,297