0

我在下面创建了通过多对多关系关联的这两个模型(作者和书籍)。然后我生成了 crud 方法。

问题:当我尝试使用新表单或编辑表单创建或保存作者时,它不会保存书籍。

namespace Prueba\FrontendBundle\Entity;

use \Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ORM\Mapping as ORM;
use Gedmo\Mapping\Annotation as Gedmo;

/**
 * @ORM\Entity()
 * @ORM\Table(name="author")
 */
class Author
{
    /** @ORM\Id @ORM\GeneratedValue @ORM\Column(type="integer") **/
    protected $id;

    /**
     * @ORM\Column(type="string")
     */ 
    protected $name;

    /**
     * @ORM\ManyToMany(targetEntity="Book", inversedBy="authors")
     * @ORM\JoinTable(name="author_book")
     */
    protected $books;

    public function __construct()
    {
        $this->books = new ArrayCollection();
    }

    public function getId()
    {
        return $this->id;
    }

    public function getName()
    {
        return $this->name;
    }

    public function setName($name)
    {
        $this->name = $name;
    }


    public function getBooks()
    {
        return $this->books;
    }

    public function addBook($book)
    {
        $this->books[] = $book;
    }

    public function setBooks($books)
    {
        $this->books = $books;
    }
    public function __toString()
    {
        return $this->name;
    }
}

--------------

namespace Prueba\FrontendBundle\Entity; 

use \Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ORM\Mapping as ORM;
use Gedmo\Mapping\Annotation as Gedmo;

/**
 * @ORM\Entity()
 * @ORM\Table(name="book")
*/
class Book 
{
     /** @ORM\Id @ORM\GeneratedValue @ORM\Column(type="integer") **/
     protected $id;

    /**
     * @ORM\Column(type="string")
     */ 
    protected $title;

    /**
     * @ORM\ManyToMany(targetEntity="Author", inversedBy="books")
     * @ORM\JoinTable(name="author_book")
     */
    protected $authors;

    public function __construct()
    {
        $this->authors = new ArrayCollection();
    }

    public function getId()
    {
        return $this->id;
    }

    public function getTitle()
    {
        return $this->title;
    }

    public function setTitle($title)
    {
        //die("fadsfadsff");
        $this->title = $title;
    }

    public function getAuthors()
    {
        //die();
        return $this->authors;
    }

    public function addAuthor($authors)
    {
        die();//Here is not entering after editing a book!!!!! why????
        $this->authors = $authors;
    }

    public function setAuthors($authors)
    {
        die();//Here is not entering after editing a book!!!!! why????
        $this->authors = $authors;
    }

    public function __toString()
    {
        return $this->title;
    }
}
4

2 回答 2

2

不确定这是否是您的问题的原因,但您inversedBy在两个实体中都指定了。

它应该是:

class Author
{
    /**
     * @ORM\ManyToMany(targetEntity="Book", inversedBy="authors")
     */
    protected $books;
}

因为作者拥有这些书。

class Book
{
    /**
     * @ORM\ManyToMany(targetEntity="Author", mappedBy="books")
     */
    protected $authors;
}

因为一本书属于作者。

于 2012-05-14T19:15:55.557 回答
0

级联持久性不是自动的,您还没有指定任何级联规则

/**
 * @ORM\ManyToMany(targetEntity="Book", inversedBy="authors", cascade={"persist"})
 * @ORM\JoinTable(name="author_book")
 */
protected $books;

我自己没有使用多对多关联的级联,但它应该可以工作

于 2012-05-14T21:10:44.643 回答