duandian4501 2014-01-26 23:07
浏览 103
已采纳

Symfony2中的子表单实体上的GroupSequenceProvider

I have a parent form and a child which is of type collection, which can have adds/removes.

I need the GroupSequenceProviderInterface on both the parent and the child entities, because my validation is dynamic based on the form data.

Both forms have dynamic validation groups, which I add in the controller based on form input.

GroupSequence works great on the parent form, ever with complex validation groups.

The child seems to be setup correctly and the group is definitely being added, however getGroupSequence on the child element is never called.

This makes me wonder whether it is even possible to have dynamic validation on Child Entities. Can symfony handle groups in a hierarchy?

I am using symfony 2.3

Is there a way to have GroupSequence validation on child form entities?

  • 写回答

1条回答 默认 最新

  • doumei1955 2014-02-18 16:04
    关注

    The issue here was actually my child entities were not being validated because they did not have the Valid annotation.

    // parent entity class
    
    /**
    * @Assert\Valid
    */
    public $childEntity;
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?