【发布时间】:2022-01-03 15:54:51
【问题描述】:
我有一个带有 ChoiceType 的表单,它显示多个复选框
我想展示这样的东西
<input type="checkbox">
<label><img src="..."></label>
但是好像不能只给文字标签不给图片,怎么办?
$builder->add('whatever',
ChoiceType::class,
[
'choices' =>
[
'firstLabel' => 'firstValue',
'secondLabel' => 'secondeValue',
'thirdLabel' => 'thirdValue'
],
'expanded' => true,
'multiple' => true,
]
);
【问题讨论】: