Symfony - 如何以“多对一”的形式保存外键

时间:2013-10-31 15:28:35

标签: symfony symfony-forms formbuilder

我是Symfony 2的新手,我正在尝试为具有外键的内容类型构建表单。 我不知道如何使用表单保存外键。

我的两个表是“类别”和“问题”。一个问题属于一个类别(多对一)。所以我在Entity中的Question.php文件包含:

<?php

namespace Iel\CategorieBundle\Entity;

use Doctrine\ORM\Mapping as ORM;

/**
 * Question
 *
 * @ORM\Table()
 * @ORM\Entity(repositoryClass="Iel\CategorieBundle\Entity\QuestionRepository")
 */
class Question
{
    /**
    * @ORM\ManyToOne(targetEntity="Iel\CategorieBundle\Entity\Categorie")
    * @ORM\JoinColumn(nullable=false)
    */
    private $categorie;
    /**
    * Set categorie
    *
    @param Iel\CategorieBundle\Entity\Categorie $categorie
    */
    public function setCategorie(\Iel\CategorieBundle\Entity\Categorie $categorie)
    {
        $this->categorie = $categorie;
    }
    /**
    * Get categorie
    *
    @return Iel\CategorieBundle\Entity\Categorie
    */
    public function getCategorie()
    {
        return $this->categorie;
    }

我试过像这样构建控制器函数,但这不是一个正确的语法:

public function addquestionAction()
{
    $question = new Question;

    $form = $this->createFormBuilder($question)
        ->add('titre', 'text')
        ->add('auteur', 'text')
        ->add('contenu', 'textarea')
        ->add('category_id', $this->getCategorie())    
        ->getForm();    

    $request = $this->get('request');

我不知道如何使用此表单在问题表中编写当前的category_id。

2 个答案:

答案 0 :(得分:8)

更好的方法是声明“实体”类型的“类别”。像这样:

$form = $this->createFormBuilder($question)
    ->add('titre', 'text')
    ->add('auteur', 'text')
    ->add('contenu', 'textarea')
    ->add('category', 'entity', array(
        'class' => 'IelCategorieBundle:Categorie',
        'property' => 'name',
    ))
    ->getForm();

这应该创建一个选项,其中选项值是类别ID,选项显示值是类别名称。持久化$ question对象将在“questions”表中的外键字段中插入类别ID。

答案 1 :(得分:1)

尝试使用categorie代替category_id。 Doctrine和SF2表单使用关联,而不是外键。

此外$this->getCategorie()也不起作用。你在控制器上下文中。 而不是这个让表单根据Question映射文件猜测类型。

/* ... */
$form = $this->createFormBuilder($question)
    ->add('titre', 'text')
    ->add('auteur', 'text')
    ->add('contenu', 'textarea')
    ->add('categorie', null)    
    ->getForm(); 
/* ... */