PHP / Symfony2表单复选框字段

时间:2012-12-10 12:19:01

标签: php symfony checkbox

奥姆

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
    ));

    // ...
}

错误

  

“Boolean”类型的预期参数,给定的“整数”


我想通过复选框打开和关闭。 该值由0和1分配 即使它给出了值参数,也没用。

$builder->add('motion', 'checkbox', array(
    'value'     => 1,
    'required'  => false
));

我该怎么办?

1 个答案:

答案 0 :(得分:10)

在ORM映射定义中,您必须将motion定义为布尔值而不是smallint。而且,仅供参考,Symfony将TINYINT解释为布尔值,将任何其他整数SQL类型解释为整数。

My\SampleBundle\Entity\Subject:
    type: entity
    id:
        id:
            type: integer
            generator: { strategy: AUTO }
    fields:

        // ...

        motion:
            type: boolean