フォームからいくつかの情報を収集して同じテンプレートに表示できる単純なアプリケーションを作成しています..
以下はコードです、
テンプレートから-- にアクセスしようとすると{{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>