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

问题描述 投票:0回答:3

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

我的两个表是“类别”和“问题”。一个问题属于一个类别(多对一)。所以我在实体中的 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。

symfony symfony-forms formbuilder
3个回答
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。


2
投票

尝试使用

categorie
而不是
category_id
。 Doctrine 和 SF2 Forms 与关联一起工作,而不是与外键一起工作。

而且

$this->getCategorie()
也不起作用。您处于控制器上下文中。 相反,让表单根据
Question
映射文件猜测类型。

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

0
投票

我正在使用 symfony 6.2,现在我们可以使用

EntityType
,这是一个示例:

use Symfony\Bridge\Doctrine\Form\Type\EntityType;

$builder->add('someid', EntityType::class, [
    'class' => 'App\Entity\MyCibleEntity',
    'by_reference' => 'cibleid',
    'choice_label' => 'ciblename',
]);

不要忘记

choice_label
,否则你可能会遇到类似“类 X 的对象无法转换为字符串”的错误。

© www.soinside.com 2019 - 2024. All rights reserved.