POST方法提交表单时候 CSRF verification failed. Request aborted. CSRF token missing or incorrect.doc

POST方法提交表单时候 CSRF verification failed. Request aborted. CSRF token missing or incorrect.doc

  1. 1、本文档共4页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
POST方法提交表单时候 CSRF verification failed. Request aborted. CSRF token missing or incorrect

HYPERLINK /wenjiashe521/archive/2012/08/29/2662041.html BUG!!!====== POST方法提交表单的时候 CSRF verification failed. Request aborted. CSRF token missing or incorrect. Forbidden (403) CSRF verification failed. Request aborted. Help Reason given for failure: CSRF token missing or incorrect. In general, this can occur when there is a genuine Cross Site Request Forgery, or when Djangos CSRF mechanism has not been used correctly. For POST forms, you need to ensure: Your browser is accepting cookies. The view function uses RequestContext for the template, instead of Context. In the template, there is a {% csrf_token %} template tag inside each POST form that targets an internal URL. If you are not using CsrfViewMiddleware, then you must use csrf_protect on any views that use the csrf_token template tag, as well as those that accept the POST data. Youre seeing the help section of this page because you have DEBUG = True in your Django settings file. Change that to False, and only the initial error message will be displayed. You can customize this page using the CSRF_FAILURE_VIEW setting. 解决方法: 1 In the template, there is a?{% csrf_token %}?template tag inside each POST form that targets an internal URL.在表单里加上{% csrf_token %}。 2 在setting.py 中设置文件如下: MIDDLEWARE_CLASSES = ( mon.CommonMiddleware, django.contrib.sessions.middleware.SessionMiddleware, django.middleware.csrf.CsrfViewMiddleware, 新加入 DJANGO = 1.3 django.contrib.auth.middleware.AuthenticationMiddleware, django.contrib.messages.middleware.MessageMiddleware, django.middleware.csrf.CsrfResponseMiddleware 新加入 DJANGO 1.4 # Uncomment the next line for simple clickjacking protection: # django.middleware.clickjacking.XFrameOptionsMiddleware, ) ?但是如果在1.4版本中加入的话又会出现以下问题: Traceback (most recent call last): File /usr/lib/python2.7/wsgiref/handlers.py, line 85, in run self.result = application(self.environ, self.start_response) File /usr/lib/pyth

文档评论(0)

xcs88858 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

版权声明书
用户编号:8130065136000003

1亿VIP精品文档

相关文档