gpt4 book ai didi

python - 避免 django 1.4.3 中的 csrf 错误

转载 作者:太空狗 更新时间:2023-10-30 02:33:03 26 4
gpt4 key购买 nike

我正在使用 Django 设计一个基本的登录和注销页面。下面是我的代码

settings.py

TEMPLATE_CONTEXT_PROCESSORS = (
...........
...........
"django.contrib.messages.context_processors.messages",
"django.core.context_processors.request",
"django.core.context_processors.csrf",
)

MIDDLEWARE_CLASSES = (
'django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
)
INSTALLED_APPS = (
'django.contrib.auth',
.......
.......
)

urls.py

from django.conf.urls.defaults import *
from django.conf import settings

urlpatterns = patterns('',
url(r'^$', 'learn_django.views.home_page'),
url(r'^login/$', 'learn_django.views.login'),
url(r'^logged_in$', 'learn_django.views.logged_in'),
url(r'^logout/$', 'learn_django.views.logout'),
)


if settings.DEBUG:
urlpatterns = patterns('',
url(r'^media/(?P<path>.*)$', 'django.views.static.serve',{'document_root': settings.MEDIA_ROOT, 'show_indexes': True}),
) + urlpatterns

views.py

from django.shortcuts import render_to_response
from django.template import RequestContext

def home_page(request):
return render_to_response("home_page.html")

def login(request):
return render_to_response("login.html")

def logged_in(request):
return render_to_response("logged_in.html",context_instance=RequestContext(request))

base.html

{% load staticfiles %}
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" href="{% static 'css/home_remaining.css' %}" type="text/css">
<title>{% block title %}{% endblock %}</title>
</head>
<body>
<header>
<div class='header_div'>
<div class="logout"><p id='logout'><a href="/logout" >Logout</a></p><div>
<div class="login"><p id='login'> <a href="/login" >Login</a></p><div>
</div>
</header>
<div class="body_content">
{% block body %}{% endblock %}
</div>
</body>
</html>

login.html

{% extends 'base.html' %}
{% block title %}Login Page{% endblock %}
{% block body %}
<div id='container'>
<form action="/logged_in" method="POST">
{% csrf_token %}
<label for="name">Username:</label><input type="name">
<label for="username">Password:</label><input type="password">
<div id="lower">
<input type="submit" value="Login">
</div>
</form>
</div>
{% endblock %}

以上是我的完整代码,当我们点击 base.html 中给出的 Login 链接时,它会显示一个登录表单。

登录后显示并输入一些用户名密码并单击登录按钮,一个错误页面指示csrf错误 已显示

Google 了很多,在表单标签中添加了 {% csrf_token %} ,还在 的模板上下文过程中添加了 django.core.context_processors.csrf设置.py

所以下面是错误消息,看起来像

Forbidden (403)
CSRF verification failed. Request aborted.
Help
Reason given for failure:
CSRF cookie not set.

In general, this can occur when there is a genuine Cross Site Request Forgery, or when Django's 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.
You're 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.

因此,当我从模板上下文进程中删除 django.core.context_processors.csrf 时,它工作正常。但我也想使用 csrf 保护。

最后,实际上上面的 View 代码有什么问题,为什么会出现 csrf 错误页面,以及如何避免出现上述错误页面?

我是否需要在我的 views.py 函数中添加任何代码?

任何人都可以在我上面的函数中添加基本的登录和注销功能代码,以便实际理解代码更有帮助......

已编辑

针对上述问题,我导入了如下所示的 csrf_exempt 函数

从 django.views.decorators.csrf 导入 csrf_exempt

并将其作为 logged_in View 之前的装饰器,当我单击登录按钮时它没有显示任何错误页面

但仍然想知道为什么下面提到的方法(例如从模板发送 Requestcontext)不起作用

最佳答案

您需要将 RequestContext 传递给您的 render_to_response 函数。

def home_page(request):
return render_to_response("home_page.html", context_instance=RequestContext(request))

或者使用新的渲染函数,它会为您处理传递 RequestContext

def home_page(request):
return render(request, "home_page.html")

RequestContext 将各种有用的东西添加到传递给模板的上下文字典中。这包括 csrf token 。看看 RequestContext docs了解更多信息。

在您的情况下,您的 login View 正在呈现 login.html 模板,但未传递 csrf token 。当 login.html 模板回发到服务器(到 /logged_in)时,logged_in View 会检查该 csrf token 。它不存在(因为您从未包含它)。所以它假定它收到了跨站点请求伪造。

阅读 csrf docs使过程更有意义。

关于python - 避免 django 1.4.3 中的 csrf 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15152258/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com