Django下关于session的使用
程序员文章站
2022-06-05 15:56:54
一、Session的概念 cookie是在浏览器端保存键值对数据,而session是在服务器端保存键值对数据 session 的使用依赖 cookie:在使用Session后,会在Cookie中存储一个sessionid的数据,每次请求时浏览器都会将这个数据发给服务器,服务器在接收到sessioni ......
一、session的概念
- cookie是在浏览器端保存键值对数据,而session是在服务器端保存键值对数据
- session 的使用依赖 cookie:在使用session后,会在cookie中存储一个sessionid的数据,每次请求时浏览器都会将这个数据发给服务器,服务器在接收到sessionid后,会根据这个值找出这个请求者的session。
二、django中session的使用
- session键值对数据保存
session
数据默认保存在django项目的一张数据库表中(表名为:django_session
),保存格式如下:
三、数据操作:
- 以键值对的格式写session
request.session['键']=值
- 根据键读取值
request.session.get('键',默认值)
# 或者
request.session['键']
- 清除所有session,在存储中删除值的部分
request.session.clear()
- 清除session数据,在存储中删除session的整条数据
request.session.flush()
- 删除session中的指定键及值,在存储中只删除某个键及对应的值
del request.session['键']
- 设置session数据有效时间; 如果不设置,默认过期时间为两周
request.session.set_expiry(value)
- 如果value是一个整数,则 session数据 将在value秒没有活动后过期。
- 如果value为none,那么会话永不过期。
- 如果value为0,那么用户会话的cookie将在用户的浏览器关闭时过期。
四、以下是使用例子:
# 发短信接口
def sms_send(request):
# http://localhost:8000/duanxin/duanxin/sms_send/?phone=18434288349
# 1 获取手机号
phone = request.get.get('phone')
# 2 生成6位验证码
code = aliyunsms.get_code(6, false)
# 3 缓存到redis
#cache.set(phone,code,60) #60s有效期
#print('判断缓存中是否有:',cache.has_key(phone))
#print('获取redis验证码:',cache.get(phone))
#暂时用session处理
request.session['phone'] = code
request.session.set_expiry(300) #设置5分钟后过期
print('判断缓存中是否有:', request.session.get('phone'))
print('获取session验证码:',request.session.get('phone'))
# 4 发短信
result = aliyunsms.send_sms(phone, code)
return httpresponse(result)
# 短信验证码校验
def sms_check(request):
# /duanxin/sms_check/?phone=xxx&code=xxx
# 1. 电话和手动输入的验证码
phone = request.get.get('phone')
code = request.get.get('code')
# 2. 获取redis中保存的code
#print('缓存中是否包含:',cache.has_key(phone))
#print('取值:',cache.get(phone))
#cache_code = cache.get(phone)
#获取session里的code
print('取值:', request.session.get('phone'))
cache_code = request.session.get('phone')
# 3. 判断
if code == cache_code:
return httpresponse(json.dumps({'result':'ok'}))
else:
return httpresponse(json.dumps({'result':'false'}))
上一篇: maya怎么制作法线贴图?
下一篇: scala运行时反射简单介绍
推荐阅读
-
RabbitMQ在Windows环境下的安装与使用
-
CentOS下使用Squid架设CDN服务器的方法
-
win2003下PHP使用preg_match_all导致apache崩溃问题的解决方法
-
Linux下安装使用cpulimit来限制CPU的利用率
-
Linux中在不破坏磁盘的情况下使用dd命令
-
Nginx服务器下配置使用索引目录的教程
-
写自己的ROS节点使用(import)anaconda虚拟环境的包(在虚拟环境下运行)
-
解决Idea、WebStorm下使用Vue cli脚手架项目无法使用Webpack别名的问题
-
使用Python下的XSLT API进行web开发的简单教程
-
详解nodejs express下使用redis管理session