Django
Formsets
Sök…
Syntax
- NewFormSet = formset_factory (SomeForm, extra = 2)
- formset = NewFormSet (initial = [{'some_field': 'Field Value', 'other_field': 'Other Field Value',}])
Formsatser med initialiserad och enhetlig data
Formset
är ett sätt att återge flera former på en sida, som ett rutnät med data. Ex: Denna ChoiceForm
kan vara associerad med någon typ av fråga. som barn är mest intelligenta mellan vilken ålder?
appname/forms.py
from django import forms
class ChoiceForm(forms.Form):
choice = forms.CharField()
pub_date = forms.DateField()
I dina åsikter kan du använda formset_factory
konstruktör som tar Form
som en parameter sin ChoiceForm
i detta fall och extra
som beskriver hur många extra former andra än initialiserade form / formulär som måste göras, och du kan slinga över formset
precis som alla andra andra iterable.
Om formset inte initialiseras med data skrivs det ut antalet formulär lika med extra + 1
och om formset initialiseras skrivs det ut initialized + extra
där extra
antal tomma formulär andra än initialiserade.
appname/views.py
import datetime
from django.forms import formset_factory
from appname.forms import ChoiceForm
ChoiceFormSet = formset_factory(ChoiceForm, extra=2)
formset = ChoiceFormSet(initial=[
{'choice': 'Between 5-15 ?',
'pub_date': datetime.date.today(),}
])
om du loopar över formset object
som detta för form i formset: print (form.as_table ())
Output in rendered template
<tr>
<th><label for="id_form-0-choice">Choice:</label></th>
<td><input type="text" name="form-0-choice" value="Between 5-15 ?" id="id_form-0-choice" /></td>
</tr>
<tr>
<th><label for="id_form-0-pub_date">Pub date:</label></th>
<td><input type="text" name="form-0-pub_date" value="2008-05-12" id="id_form-0-pub_date" /></td>
</tr>
<tr>
<th><label for="id_form-1-choice">Choice:</label></th>
<td><input type="text" name="form-1-choice" id="id_form-1-choice" /></td>
</tr>
<tr>
<th><label for="id_form-1-pub_date">Pub date:</label></th>
<td><input type="text" name="form-1-pub_date" id="id_form-1-pub_date" /></td
</tr>
<tr>
<th><label for="id_form-2-choice">Choice:</label></th>
<td><input type="text" name="form-2-choice" id="id_form-2-choice" /></td>
</tr>
<tr>
<th><label for="id_form-2-pub_date">Pub date:</label></th>
<td><input type="text" name="form-2-pub_date" id="id_form-2-pub_date" /></td>
</tr>