会话的保持和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表单的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot中表单提交报错“Content type ‘application/x-www-form-urlencoded;charset=UTF-8‘ not supported“(代码片段
会话到期时的授权重定向不适用于提交 JSF 表单,页面保持不变
MVC 4:如何在 IIS 重启后保持会话和 cookie 仍然有效?