5
ChoiceField選項鑑於在Django一個ChoiceField
渲染在Django模板
fruits = ChoiceField(label="Fruits", choices=(('A', 'Apple'),
('B', 'Banana'), ('C', 'Cherry')
)
如何顯示在Django模板的形式選項1.9?例如,我嘗試以下,但無法顯示錶單數據:
<table class="table table-bordered table-condensed">
<tr>
<th>
<label for="{{form.fruits.id_label}}">
{{form.fruits.label}}
</label>
</th>
<td>{% for value, displayable in form.fruits.choices %}
<option value="{{value}}">{{displayable}}</option>
{% endfor %}
</td>
</tr>
</table>
真正簡單的閱讀文檔https://docs.djangoproject.com/en/1.9/ref/forms/widgets/#selectmultiple – rakwen
這個環節我給解釋所有你婉知道的客戶呈現choiceField!祝你好運 ! – rakwen
@rakwen我閱讀文檔,但仍無濟於事。也許你可以幫助這個呢? – bryansis2010