我有一个具有多个RadioType的表单,它们代表一个公告实体的类别。
$builder
->add('info', RadioType::class,
[
'label_attr' => ['class' => 'sr-only'],
'required' => false
])
->add('star', RadioType::class,
[
'label_attr' => ['class' => 'sr-only'],
'required' => false
])
我计划为8个选择提供8种不同的RadioType。确定选择哪个RadioType的最佳方法是什么。我当前的实现是为每个if
语句,但这似乎是一个糟糕的解决方案。
if ($form->getData()['info'] == true) {
//do stuff
}
if ($form->getData()['star'] == true) {
//do stuff
}
答案 0 :(得分:2)
According to the documentation,通常不应该直接使用RadioType
。使用ChoiceType
object使您可以遵循预期的HTML标准,这意味着您对每个元素使用相同的名称但使用不同的值。这样,浏览器将像通常单选按钮一样自动将用户限制为一个选择。
<?php
$builder->add('yourCategory', ChoiceType::class, [
'choices' => [
'Info' => 'info',
'Star' => 'star',
'Some other label' => 'other',
],
// attributes for label elements
'label_attr' => ['class' => 'sr-only'],
// attributes for input elements
'choice_attr' => [
'Info' => ['class' => 'fa fa-info'],
'Star' => ['class' => 'fa fa-star'],
'Some other label' => ['class' => 'whatever'],
],
// setting these options results in radio buttons
// being generated, instead of a select element
'expanded' => true,
'multiple' => false,
]);
然后在您的控制器中:
switch($form->getData()['yourCategory']) {
case 'info':
// do stuff
break;
case 'star':
// do stuff
break;
case 'other':
// do stuff
break;
}
答案 1 :(得分:0)
所以我最终能够手动更改每个选项的标签
{# Manually set the label for each choice in the form, so only an icon is shown #}
<label for="{{ form.choices.children[0].vars.id}}" class="mt-2">
<span class="fa-stack fa-2x type-icon" id="info-type">
<span class="fas fa-circle fa-stack-2x circle"></span>
<span class="info fas fa-info fa-stack-1x"></span>
</span>
</label>