django中的cookie与session

获取cookie

request.COOKIE.GET

使用cookie

response.set-cookie

views.py

python 复制代码
from django.http import HttpResponse
from django.shortcuts import render


# Create your views here.
def cookie_test(request):
    r = HttpResponse("hello world")
    r.set_cookie('lan', 'python')
    r.set_cookie('framework','django')
    print(request.COOKIES.get('lan'))
    print(request.COOKIES.get('framework'))
    return r

浏览器中观察cookie值

获取session

request.session.get

使用session

request.session

views.py

python 复制代码
def session_test(request):
    request.session['hello'] = 'world'
    print(request.session.get('hello'))
    return HttpResponse('hello session')

浏览器中查看session ------ 加密显示

用户登录与session
相关推荐
生信与遗传解读21 分钟前
XGBoost算法在自定义数据集中预测疾病风险
人工智能·python·算法·数据分析
孙尚香蕉1 小时前
Hadoop集群之间实现免密登录
linux·服务器
日拱一卒无有尽, 功不唐捐终入海1 小时前
springCloudGateWay使用总结
运维·服务器
开疆智能2 小时前
机器人技术:ModbusTCP转CCLINKIE网关应用
java·服务器·科技·机器人·自动化
人生无根蒂,飘如陌上尘2 小时前
网站自动签到
python·签到
深图智能2 小时前
OpenCV的双边滤波函数
python·opencv·计算机视觉
eybk2 小时前
采用pycorrector纠错word文件段落,并保存为word文件标红显示出来
python·word
微尘hjx2 小时前
【FTP 协议】FTP主动模式
运维·服务器·网络协议
背锅浩2 小时前
python批量删除redis key
redis·python·bootstrap
誓约酱3 小时前
git的基本使用
linux·运维·服务器·c++·git·后端