我们假设我的表格中包含collection
类型的一个字段。如何在浏览器中加载页面时从该字段强制打开固定数量的子字段集(不是通过单击添加其他项按钮添加)?
/**
* @Assert\Valid
* @Assert\Count(min="1")
* @ORM\OneToMany(
* targetEntity="PageBundle\Entity\Page\PageLocale",
* mappedBy="page",
* cascade={"persist","remove"},
* orphanRemoval=true
* )
* @var Page\PageLocale[]
*/
protected $locales;
此存储库中的整个代码:LINK。查看Entity/Page.php
和Entity/Page/PageLocale.php
。收集表格位于Form/PageLocaleType.php
。