gpt4 book ai didi

Django - {% csrf_token %} 在模板中使用,但上下文未提供值

转载 作者:行者123 更新时间:2023-12-01 19:19:21 25 4
gpt4 key购买 nike

我是 Django 新手,我仍在尝试掌握它的功能。我使用 Django 1.4.2 创建了一个非常简单的项目,它具有简单形式的索引页面,您可以在其中输入内容,还可以在结果页面中在提交后显示您的输入(代码如下)。

提交后,我收到错误 403 和以下消息:

A {% csrf_token %} was used in a template, but the context did not provide the value. This is usually caused by not using RequestContext. warnings.warn("A {% csrf_token %} was used in a template, but the context did not provide the value. This is usually caused by not using RequestContext.")

index.html

<!DOCTYPE html>
<head>
<title>Index page</title>
</head>
<body>
<div id="header">Welcome to index page</div>
<div id="content">
<p>Enter your name</p>
<form action="/result/" method="post" accept-charset="utf-8">{% csrf_token %}
<input type="text" name="answer">
<input type="submit" value="Send!">
</form>
</div>
</body>

结果.html

<!DOCTYPE html>
<head>
<title>Result page</title>
</head>
<body>
<div id="header">Here is the result</div>
<div id="content">
<p>Your name is: {{ answer }}</p>
</div>
</body>

views.py

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

def index(request):
return render_to_response('index.html')

def result(request):
p = request.POST['answer']
return render_to_response('result.html', {'answer': p}, context_instance=RequestContext(request))

我查看了互联网上的文档和各种示例,但我不明白我做错了什么。如果我在 settings.py 中禁用 django.middleware.csrf.CsrfViewMiddleware,我会得到我想要的结果,但这不是我正在寻找的答案。

我感谢更有经验的 Django 忍者的帮助:-)

最佳答案

您的index.html在没有RequestContext的情况下呈现。试试这个:

def index(request):
return render_to_response('index.html', context_instance=RequestContext(request))

我还推荐您使用更方便的快捷方式render :

from django.shortcuts import render

def index(request):
return render('index.html')

来自文档:

render() is the same as a call to render_to_response() with a context_instance argument that forces the use of a RequestContext.

编辑:

谢谢@nerdwaller值得一提的是,新版本现在需要:

render(request, 'index.html', {params});

关于Django - {% csrf_token %} 在模板中使用,但上下文未提供值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13048228/

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