Symfony - 验证:属性的类型必须是 bool,string given
Symfony - Validation: The type of the attribute must be bool, string given
我有一个实体和一个布尔类型的列
/**
* @ORM\Column(type="boolean", nullable=false)
* @Assert\NotBlank()
*/
private $isActive;
当我尝试向该列添加一个字符串(只是为了测试)时,我收到此错误消息
The type of the attribute must be bool, string given
所以,我添加了验证类型
* @Assert\Type(
* type="boolean",
* message="The value {{ value }} is not a valid {{ type }}."
* )
但总是出现消息错误,所以,我通过创建自己的资产验证来尝试第二种解决方案
if(false === is_bool($user->getIsActive())){
$this->context->buildViolation($constraint->message)->atPath('isActive')->addViolation();
}
但总是代码被破坏并出现消息。
PS: 如果我将列类型更改为字符串,验证工作正常,但我想使用 bool 类型进行验证,有什么解决办法吗?
我通过添加以下行解决了这个问题:
/**
* @ApiResource(
* denormalizationContext={
* "disable_type_enforcement"=true
* }
* )
*/
我有一个实体和一个布尔类型的列
/**
* @ORM\Column(type="boolean", nullable=false)
* @Assert\NotBlank()
*/
private $isActive;
当我尝试向该列添加一个字符串(只是为了测试)时,我收到此错误消息
The type of the attribute must be bool, string given
所以,我添加了验证类型
* @Assert\Type(
* type="boolean",
* message="The value {{ value }} is not a valid {{ type }}."
* )
但总是出现消息错误,所以,我通过创建自己的资产验证来尝试第二种解决方案
if(false === is_bool($user->getIsActive())){
$this->context->buildViolation($constraint->message)->atPath('isActive')->addViolation();
}
但总是代码被破坏并出现消息。
PS: 如果我将列类型更改为字符串,验证工作正常,但我想使用 bool 类型进行验证,有什么解决办法吗?
我通过添加以下行解决了这个问题:
/**
* @ApiResource(
* denormalizationContext={
* "disable_type_enforcement"=true
* }
* )
*/