码迷,mamicode.com
首页 > 其他好文 > 详细

django session

时间:2016-01-03 18:20:22      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:

how to decode the data in session:

python manage.py shell:

from django.contrib.sessions.models import Session
#...
sess = Session.objects.all()
for s in sess:   print(s.session_data)   print(s.get_decoded())

django session

标签:

原文地址:http://www.cnblogs.com/lynnge/p/5096836.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!