我正在 symfony2 中做一个过滤器表单,我尝试预先选择一些字段。
我有两个选择:
$formBuilder->add('first', 'choice',
array('choices' => $choiceFirst,
'expanded' => false,
'multiple' => true,
'data' => explode(' ', $this->getRequest()->get('first'))
));
$formBuilder->add('second', 'choice',
array('choices' => $choiceSecond,
'expanded' => true,
'multiple' => true,
'data' => explode(' ', $this->getRequest()->get('second'))));
对于未扩展的第一选择,通过 url 传递的数据是预选的。但不是第二个扩展。
有什么方法可以从字段选择中预选复选框?