我需要在提交我的 html 表单时指向一个空白的 html 页面(test_page1.html)。我怎样才能在 Django 中做到这一点?
我的 urls.py 文件中没有新页面的任何映射。
test_page.html
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<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="test_page1.html" method="post">{% csrf_token %}
FIRST NAME : <input type="text" name="fname">
<input type="submit" value="register"/>
</form>
{% else %}
{% autoescape off %}
{{ firstname }}
{% endautoescape %}
{% endif %}
</body>
</html>
views.py
def test_page(request):
if request.method == 'POST':
print 'request.post = ', request.POST['fname']
fname = cgi.escape(request.POST['fname'])
print 'fname =', fname
variables = RequestContext(request,{'display_form':False,'firstname':fname})
return render_to_response('test_page.html',variables)
else:
variables = RequestContext(request,{'display_form':True})
return render_to_response('test_page.html',variables)