我正在尝试将现有应用程序从 1.4 版升级到 1.11 版。我有一个问题,MultipleChoiceField 被存储在数据库中,但模板没有将它们呈现为被检查。
模型.py
class TestModel(models.Model):
test = models.CharField(blank=True, max_length=200)
表格.py
from django import forms
from django.forms import ModelForm
from app.models import TestModel
CHOICES = (
('1', 'Select All'),
('a', 'choice 1'),
('k', 'choice 2'),
)
class TestForm(ModelForm):
test = forms.MultipleChoiceField(choices=CHOICES, required=False, widget=forms.CheckboxSelectMultiple()
)
class Meta:
model = TestModel
fields = '__all__'
form1 = TestForm(data={'test': ['a','k']})
当我使用 manage.py shell 运行它时,我得到了正确的 HTML 输出
打印表格1
<tr>
<th><label>Test:</label></th>
<td>
<ul id="id_test">
<li>
<label for="id_test_0"><input type="checkbox" name="test" value="1" id="id_test_0" onclick="selectAll(this);" />Select All</label>
</li>
<li>
<label for="id_test_1"><input type="checkbox" name="test" value="a" checked id="id_test_1" onclick="selectAll(this);" />choice 1</label>
</li>
<li>
<label for="id_test_2"><input type="checkbox" name="test" value="k" checked id="id_test_2" onclick="selectAll(this);" />choice 2</label>
</li>
</ul>
</td>
</tr>
您可以看到它在代码中具有选中的属性。
模板
<div id="Scrolldrive2">{{form1.test}}</div>
选定的复选框不会在 UI 上呈现。