我将一个非映射字段添加到symfony2表单类型:
$builder->add('terms','checkBox',array('mapped' => false,'constraints' => array(new NotBlank())));
但是NotBlank()约束不行!只有当我将类型从“复选框”更改为“文本”时,才能正常工作.那么如何验证一个复选框?当然,我也尝试使用’True()’,’EqualTo()’和’Length(…)’约束.但没有成功.我也尝试了不同的POST值(1/0,true / false,on / off …).
在symfony2中有关表单域验证的复选框字段和文本字段之间有什么大的区别?
感谢名单
燕姿
NotBlank验证字符串不为空.尝试使用NotNull
原文链接:https://www.f2er.com/php/131011.htmlTrue也必须工作.
Validates that a value is true. Specifically,this checks to see if the value is exactly true,exactly the integer 1,or exactly the string “1”. This constraint can be applied to properties (e.g. a termsAccepted property on a registration model).