私は Symfony 2 を初めて使用し、外部キーを持つコンテンツ タイプのフォームを作成しようとしています。フォームを使用して外部キーを保存する方法がわかりません。
私の 2 つのテーブルは「カテゴリ」と「質問」です。質問は 1 つのカテゴリに属します (多対 1)。したがって、エンティティの 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 を書き込む方法がわかりません。