gpt4 book ai didi

python - 在模板中访问请求变量

转载 作者:太空宇宙 更新时间:2023-11-04 10:42:15 25 4
gpt4 key购买 nike

我正在编写一个简单的应用程序,我可以从表单中收集一些信息并将其显示在同一模板上..

下面是代码,

当我尝试从模板访问 - {{request.POST['fname']}} 时,出现以下错误,

Could not parse the remainder: '['fname']' from 'request.POST['fname']'

如何访问模板中的请求变量?

views.py

def test_page(request):
print 'request.method =', request.method
if request.method == 'POST':
print 'request.post = ', request.POST['fname']
variables = RequestContext(request,{'display_form':False})
return render_to_response('test_page.html',variables)
else:
variables = RequestContext(request,{'display_form':True})
return render_to_response('test_page.html',variables)

template

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Test Page</title>
</head>
<body>
This is a test page
{% if display_form %}
<form action="." method="post">{% csrf_token %}
FIRST NAME : <input type="text" name="fname">
<input type="submit" value="register"/>
</form>
{% else %}
{{request.POST['fname']}}
{% endif %}

</body>
</html>

最佳答案

你可以这样写:

{{ request.POST.fname }}

这将在 request.POST 中查找 fname

Django 支持:

  • 字典查找(foo['bar'])
  • 属性查找(foo.bar)
  • 列表查找(foo[bar])

每当您编写 foo.bar(请参阅文档中的 Variables and lookups)。

关于python - 在模板中访问请求变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19840386/

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