如书http://symfony.com/doc/current/reference/constraints/Choice.html#min中所述, 我想使用“min”选项来验证选择,其中必须至少有一个选中的复选框
表格看起来像
->add('usergroups', 'entity', array('class' => 'PrUserBundle:Group','property' => 'name','required' => true, 'multiple' => true, 'expanded' => true))
我的 validation.yml 看起来很不错:
Pr\UserBundle\Entity\User:
constraints:
//...
properties:
//.....
locations:
- Length:
min: 7 { message: "Please select at least one group." }
我这样做是完全错误的,但是这本书不会告诉我更多的帮助,所以我问你。或者我必须使用真/假吗?