谁能告诉我为什么与表单集合相关的错误显示在特定字段之外以及如何将其移动到如下图所示的位置?
该字段的代码:
/**
* @Assert\Valid
* @ORM\OneToMany(
* targetEntity="PageFile",
* mappedBy="page",
* cascade={"persist","remove"},
* orphanRemoval=true
* )
* @var PageFile[]
* @Assert\Count(max="1")
*/
private $pageFiles;
配置:
- property: 'pageFiles'
type: 'collection'
type_options:
entry_type: 'Notimeo\PageBundle\Form\Type\MyFileType'
by_reference: false
error_bubbling: false
我正在使用EasyAdminBundle,这是我的整个项目:https ://github.com/ktrzos/SymfonyBasic 。问题适用于“ Notimeo\PageBundle ”。