我在项目Zend Framework 2中使用Doctrine 2 ORM。
我试图坚持多对多的关系。我按照here描述的文件(很多人)。
在尝试保留数据时:$em->persist($form->getData());
我收到错误:
"The class 'Doctrine\ORM\PersistentCollection' was not found in the chain configured namespaces".
有什么建议吗?
为了更清楚,我在下面添加了一些代码:
首先,我注释了像文档这样的实体所说的许多关系:
/**
* @ORM\ManyToMany(targetEntity="\User\Entity\Client", mappedBy="reportSettings")
*/
private $client;
public function __construct() {
$this->client = new ArrayCollection();
}
和
/**
* @ORM\ManyToMany(targetEntity="\Statistics\Entity\ReportSettings", inversedBy="client")
* @ORM\JoinTable(name="report_client_settings",
* joinColumns={@ORM\JoinColumn(name="client_id", referencedColumnName="id")},
* inverseJoinColumns={@ORM\JoinColumn(name="report_setting_id", referencedColumnName="id")})
*/
private $reportSettings;
public function __construct() {
$this->reportSettings = new ArrayCollection();
}
在控制器中
$form = new UpdateReportSettingsForm();
$form->bind($reportSettings);
$request = new Request();
if ($request->isPost()) {
$form->setData($request->getPost());
if ($form->isValid()) {
$data = $form->getData();
$em->persist($data); // here I got the error - The class 'Doctrine\ORM\PersistentCollection' was not found in the chain configured namespaces
$em->flush();
}
我也使用DoctrineModule \ Form \ Element \ ObjectMultiCheckbox形式。
一个简单的var_dump($data)
- 返回一个持久集合。
答案 0 :(得分:0)
出现错误是因为表单未正确定义。如何在这里建立多对多关系的正确方法 - http://laundry.unixslayer.pl/2013/zf2-quest-zendform-many-to-many/
答案 1 :(得分:-1)
您是否已在要映射的实体的开头添加了这段代码
use Doctrine\Common\Collections\ArrayCollection;