symfony 表单“此值不应为空”错误

问题描述 投票:0回答:0

我有一个实体和一个表单,我想删除密码字段。

#[ORM\Column(
        type: 'string',
        name: 'password',
        length: 20,
        nullable: false
    )]
    #[Assert\NotBlank]
    #[Assert\Length(
        max: 20
        nullable: true
    )]
    private string $password

我将其更改为下面的一个,还生成并运行了迁移。

 #[Gedmo\Versioned]
    #[ORM\Column(
        type: 'string',
        name: 'password',
        length: 20,
        nullable: true
    )]
    private string $password;

从表单构建器和树枝视图中删除了它,但我在提交表单时得到'这个值不应该是空白错误'

symfony doctrine symfony-forms
© www.soinside.com 2019 - 2024. All rights reserved.