5

django チュートリアル パート 4 には、次のコードがあります。

{{ poll.question }}

{% if error_message %}<p><strong>{{ error_message }}</strong></p>{% endif %}

<form action="{% url 'polls:vote' poll.id %}" method="post">
{% csrf_token %}
{% for choice in poll.choice_set.all %}
    <input type="radio" name="choice" id="choice{{ forloop.counter }}" value="{{ choice.id }}"     />
<label for="choice{{ forloop.counter }}">{{ choice.choice_text }}</label><br />
{% endfor %}
<input type="submit" value="Vote" />
</form>

if 条件ステートメントの error_message 変数が定義されている場所を見つけるのに苦労しています。Google、スタック オーバーフロー、django API で検索しても、これに関する回答は得られないようです。

4

1 に答える 1

6

その下のコードを確認する必要があります。

return render(request, 'polls/detail.html', {
    'question': p,
    'error_message': "You didn't select a choice.",
})
于 2013-10-27T15:05:03.233 に答える