会话的保持和form表单

Posted ivy-blogs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了会话的保持和form表单相关的知识,希望对你有一定的参考价值。

会话的保持和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表单的主要内容,如果未能解决你的问题,请参考以下文章