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

会话的保持和form表单

时间:2019-04-11 01:12:57      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:size   count   表单   style   end   strong   ons   for   html   

会话的保持和form表单


 

cookie

  • 设置cookie
     1 from django.shortcuts import render, HttpResponse, redirect, reverse
     2 
     3 
     4 def set_cookie(request):
     5     num = request.COOKIES.get(num, 0)
     6     num = str(int(num) + 1)
     7     response = render(request, crm/count.html, context={
     8         num: num
     9     })
    10     response.set_cookie(num, num, max_age=5)
    11     return response

    设置超时间为5秒

session

  •  

 

会话的保持和form表单

标签:size   count   表单   style   end   strong   ons   for   html   

原文地址:https://www.cnblogs.com/ivy-blogs/p/10675288.html

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