Symfony 实体中的多个验证组 - 怎么样?

Multiple validation groups in entities in Symfony - how?

我们如何将规则分配给多个验证组,是否正确:

/**
 * @ORM\Column(type="string", length=128)
 * @Assert\NotBlank (groups={"registration, employee"})
 */
private $password;

?我们应该使用逗号还是什么?

差不多..;-)

你有一个值 "registration, employee",但你想要一组值,所以每一组都应该用自己的引号引起来,比如:"registration", "employee"

试试这个:

/**
 * @ORM\Column(type="string", length=128)
 * @Assert\NotBlank (groups={"registration", "employee"})
 */
private $password;