我已将Symfony中的以下拼写形式添加到我的表单中。由于它不是实体的成员,我需要在控制器中手动处理它。如何在控制器中获取复选框值?
->add('showUrl', 'checkbox', array(
'mapped' => false,
))
这是生成的html形式:
<input type="checkbox" id="cuslocation_accountreg_showUrl" name="cuslocation[accountreg][showUrl]" required="required" value="1">
答案 0 :(得分:3)
$form->getData()['showUrl']
或
$form->get('showUrl')->getData()