我試圖在頁面之間傳遞一些數據,但它不工作。有小費嗎?我點擊提交,它會帶我到一個空白頁面。如果我刷新然後它顯示我的基本模板樣式,但沒有數據傳遞。傳遞數據時頁面失速
的index.html
{% extends "polls/base.html" %}
{% block title %}Vote{% endblock %}
{% block content %}
<h1>Welcome</h1>
<form action="/polls/" method="post">{% csrf_token %}
<p><label for="pin">Enter group pin:</label>
<input id="pin" type="text" name="pin" maxlength="4" />
<input type="submit" value="View Polls" /></p>
</form>
<a href="admin/">Moderator login</a>
</p>
{% endblock %}
民調/ index.html的
{% extends "polls/base.html" %}
{% block title %}Recent Polls{% endblock %}
{% block content %}
{{ pin }}
{% endblock %}
民調/ urls.py
url(r'^$',
ListView.as_view(
model=Poll,
template_name='polls/index.html')),
粘貼視圖的代碼。 – santiagobasulto
我沒有任何相關的意見 – broinjc
什麼?你怎麼服務它? Urls.py?你在學習這個教程嗎? – santiagobasulto