django错误 - Reason given for failure: CSRF cookie not set.
Posted King.left
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django错误 - Reason given for failure: CSRF cookie not set.相关的知识,希望对你有一定的参考价值。
练习Django表单提交时遇到如下问题:
在网上各种查找,终于找到了解决方法。
1.在from 表单中添加 {% csrf_token %}
2.在视图中添加 from django.template import RequestContext 导入项,并且在return 返回中添加context_instance=RequestContext(request)
<form role="form" method="post" action="login"> {% csrf_token %} <input name="userName" type="text" class="text" placeholder="账号" required="" > <input name="password" type="password" placeholder="密码" required > <div class="submit"><input type="submit" value="登录"></div> </form>
from django.template import RequestContext def index(request): return render_to_response("login.html",context_instance=RequestContext(request)) def login(request): return render_to_response("index.html")
再测试就OK了。
django之所以引进CSRF是为了避免Cross Site Request Forgeries攻击
以上是关于django错误 - Reason given for failure: CSRF cookie not set.的主要内容,如果未能解决你的问题,请参考以下文章
从 db 获取数据时,django 中的简单循环出现奇怪错误
Django loaddata 错误 __init__() 正好需要 3 个参数(给定 1 个)
无法解决此错误:错误:14077458:SSL 例程:SSL23_GET_SERVER_HELLO:reason(1112) - 关于尝试啥的任何想法?
ios开发使用cocoapods倒入一堆的三方库之后开始崩溃了。发觉是导入极光引用的iOS10UserNotifications.framework导致的问题 Reason: image not f