我有一个用Symfony和一个学说领域创建的大表单,有很多(~30)个选择。对于选择,我使用ChoiceType。选项将添加为数组:
'tv' => [ # TV- & RADIO-PRODUKTION
'cb one' => 1,
'cb two' => 2,
'cb three' => 3,
],
'av' => [ # AV-Produktion
'cb four' => 4,
'cb five' => 5,
'cb six' => 6,
],
...
表单字段:
->add('productionType', ChoiceType::class, [
'required' => true,
'label' => 'Produktionstyp',
'expanded' => true,
'multiple' => true,
'choices' => $options['production_type_choices'],
]);
如何在树枝中渲染表单字段的选项,包括数组中的“groupes”('tv'&'av')?
感谢。