奥姆
My\SampleBundle\Entity\Subject:
type: entity
id:
id:
type: integer
generator: { strategy: AUTO }
fields:
// ...
motion:
type: smallint
unsigned: true
类型
public function buildForm(FormBuilderInterface $builder, array $options)
{
// ...
$builder->add('motion', 'checkbox', array(
'required' => false
));
// ...
}
错误
给定“布尔”、“整数”类型的预期参数
我想通过复选框打开和关闭。value 是按 0 和 1 分配的。
即使给了 value 参数也没有用。
$builder->add('motion', 'checkbox', array(
'value' => 1,
'required' => false
));
我应该怎么做?