在我的 Symfony2 项目中,我面临着多对多关系的 Collection 表单类型的大问题。
环境:- Symfony 2.0.14 - Doctrine 2.1
这是一些代码:
发布实体
class Post
{
/**
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @ORM\Column(type="string", length=255, nullable=false)
*/
private $title;
/**
* @ORM\ManyToMany(targetEntity="Tag", inversedBy="posts", cascade={"persist"})
* @ORM\JoinTable(name="posts_tags")
*/
private $tags;
public function setTags(\Doctrine\Common\Collections\ArrayCollection $tags)
{
foreach($tags as $tag)
{
$tag->addSnippet($this);
}
}
public function addTag(\My\BlogBundle\Entity\Tag $tags)
{
$this->tags[] = $tags;
}
public function getTags()
{
return $this->tags;
}
标记实体
class Tag
{
/**
* @var integer $id
*
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @var string $name
*
* @ORM\Column(type="string", length=100, unique=true, nullable=false)
*/
private $name;
/**
* @var Snippet
*
* @ORM\ManyToMany(targetEntity="Post", mappedBy="tags")
*/
private $posts;
public function addSnippet(\My\BlogBundle\Entity\Post $posts)
{
$this->posts[] = $posts;
}
PostType 表单类
->add('tags', 'collection', array(
'type' => new TagType(),
'allow_add' => true,
'prototype' => true,
'by_reference' => false,
))
一切正常,但是在插入数据库中已经存在的标签时会引发错误SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'tag1' for key 'UNIQ_6FBC94265E237E06'
。
您对此问题有任何解决方法还是我遗漏了什么?我的控制器是由app/console
.enter code here