我能够在django表单选择字段中迭代选项。但我需要在多选小部件中标记选择。 请查看以下代码
protected function setUp()
{
parent::setUp();
$_FILES = array(
'image' => array(
'name' => 'test.jpg',
'tmp_name' => __DIR__ . '/_files/phpunit-test.jpg',
'type' => 'image/jpeg',
'size' => 499,
'error' => 0
)
);
}
答案 0 :(得分:0)
我找到了问题的解决方案
{{form.fields.project_team.initial}}(或)
{{form.project_team.field.initial}}
这两种方式对我有用。 form.project_team.field.initial返回初始值作为我们可以迭代的列表。