在我的表单构建器中,我添加了子表单
->add('bankAccount', BankAccountFormType::class, [
])
如何仅针对某些验证组验证子表单? 像这样:
'constraints' => [
new NotBlank([
'groups' => [
Person::TYPE_CUSTOMER, Person::TYPE_WITNESS, Person::TYPE_INSURED_PERSON
]
])
]
我应该使用哪种约束?
谢谢。
答案 0 :(得分:0)
我认为VALID对您有用,只需阅读:http://symfony.com/doc/current/reference/constraints/Valid.html