给定类型为“整数”,“ App \ Entity \ Entreprise”的预期参数

时间:2018-10-22 20:38:45

标签: symfony doctrine entity

我使用两个实体:stagiaire和entreprise。每个stagiaire有一个企业。我只需要将id企业保存在stagiaire表中。 当我创建一个新的stagiaire时,为他选择一个企业并保存表格,我在stagiaire控制器中遇到以下错误“类型为“ integer”的预期参数:“ App \ Entity \ Entreprise” 这是stagiaire实体的代码:

namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;

/**
 * @ORM\Entity(repositoryClass="App\Repository\StagiaireRepository")
 */

class Stagiaire
{
    /**
     * @var integer
     *
     * @ORM\Column(name="id", type="integer", nullable=false)
     * @ORM\Id
     * @ORM\GeneratedValue(strategy="IDENTITY")
     */
    private $id;

    /**
     * @var string
     *
     * @ORM\Column(name="civilite", type="string", length=3, nullable=false)
     */
    private $civilite = 'Mr';

    /**
     * @var string
     *
     * @ORM\Column(name="nom", type="string", length=24, nullable=false)
     */
    private $nom;

    /**
     * @var string
     *
     * @ORM\Column(name="prenom", type="string", length=16, nullable=false)
     */
    private $prenom;

    /**
     * @ORM\ManyToOne(targetEntity="App\Entity\Entreprise")
     * @ORM\JoinColumn(nullable=false)
     */
    private $entreprise;

    /**
     * @var string
     *
     * @ORM\Column(name="status", type="string", length=12, nullable=false)
     */
    private $status;

    public function __construct()
  {
    //$this->date       = new \Datetime();
    //$this->entreprise = new ArrayCollection();
  }

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

    public function getCivilite(): ?string
    {
        return $this->civilite;
    }

    public function setCivilite(string $civilite): self
    {
        $this->civilite = $civilite;

        return $this;
    }

    public function getNom(): ?string
    {
        return $this->nom;
    }

    public function setNom(string $nom): self
    {
        $this->nom = $nom;

        return $this;
    }

    public function getPrenom(): ?string
    {
        return $this->prenom;
    }

    public function setPrenom(string $prenom): self
    {
        $this->prenom = $prenom;

        return $this;
    }

    public function getEntreprise(): ?int
    {
        return $this->entreprise;
    }

    public function setEntreprise(int $entreprise): self
    {
        $this->entreprise = $entreprise;

        return $this;
    }

    public function getStatus(): ?string
    {
        return $this->status;
    }

    public function setStatus(string $status): self
    {
        $this->status = $status;

        return $this;
    }

以下是格式的代码:

use App\Entity\Stagiaire;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
use Symfony\Component\Form\Extension\Core\Type\FormType;
use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
use Symfony\Component\Form\Extension\Core\Type\TextType;
use Symfony\Bridge\Doctrine\Form\Type\EntityType;

class StagiaireType extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $choicesCivil = [
            'Mr' => '1',
            'Mme' => '2'
        ];
        $choicesStatus = [
            'Gérant' => '1',
            'Salarié' => '2'
        ];

        $builder
            ->add('civilite', ChoiceType::class, [
                'data' => '1', // cochée par défaut
                'choices' => $choicesCivil,
                'expanded' => true,  // => boutons
                'label' => 'Civilité',
                'multiple' => false
            ])
            ->add('nom')
            ->add('prenom')
            ->add('entreprise', EntityType::class, array(
                'class'         => 'App:Entreprise',
                'placeholder'   => 'Choisir une entreprise',
                'choice_label'  => 'enseigne',
            ))
            ->add('status', ChoiceType::class, [
                'data' => '1', // cochée par défaut
                'choices' => $choicesStatus,
                'expanded' => true,  // => boutons
                'label' => 'Statut',
                'multiple' => false
            ])
            ->add('create', SubmitType::class, ['label' => 'Enregistrer', 'attr' => ['class' => 'btn btn-primary']]);
    }

    public function configureOptions(OptionsResolver $resolver)
    {
        $resolver->setDefaults([
            'data_class' => Stagiaire::class,
        ]);
    }
}

这是控制器:

namespace App\Controller;

use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;

use App\Entity\Stagiaire;
use App\Entity\Entreprise;
use App\Repository\StagiaireRepository;
use App\Form\StagiaireType;

class StagiaireController extends Controller
{
    public function fStagiaire($id,$cat,$action, Request $request)
    {
        if ($action=='insert') {
            $stagiaire = new Stagiaire();
        }
        elseif($action=='update' || $action=='delete') {
            $stagiaire = $this->getDoctrine()
              ->getManager()
              ->getRepository('App:Stagiaire')
              ->find($id)
            ;
        }
        else { return;}

            $form = $this->get('form.factory')->create(StagiaireType::Class, $stagiaire);

        if ($request->isMethod('POST')) { 
          $form->handleRequest($request);

          if ($form->isValid()) {...

错误发生在“ $ form-> handleRequest($ request);”行。 我从几天开始搜索,但未找到解决方案。 有谁想帮忙吗?

2 个答案:

答案 0 :(得分:0)

为您的function setEntreprise(int $entreprise): self提供了一个对象(一个App\Entity\Entreprise),它不是它所期望的。虽然数据库中的记录将是一个int(id实体上的主键Entreprise-实际上,它将是一个单独的数据库表,该表将返回该记录的ID,且其值为零或更大) Entreprise记录),它可以作为您的对象(来自getEntreprise())作为您的代码使用(因此,如果您要读取链接的实体,则返回nullable int也会失败-它应该是空的ArrayCollection())。

您的设置者和获取者需要处理这些对象-并且由于它是“ ManyToOne”关系,因此可以实现多个对象。您可能还希望addEntreprise()函数能够添加更多对象。 ORM将处理将其中的数据保存到数据库中,并在读取该记录时稍后将它们链接回。

public function __construct()
{
    //$this->date       = new \Datetime();
    //$this->entreprise = new ArrayCollection();
}
# These lines say that `$this->entreprise` is an array - by default empty, but 
# it can be filled up with a number of linked objects.

答案 1 :(得分:0)

您需要更改函数以接受企业对象而不是id:

public function getEntreprise(): ?Entreprise
{
    return $this->entreprise;
}

public function setEntreprise(Entreprise $entreprise): self
{
    $this->entreprise = $entreprise;

    return $this;
}

,您必须将use App\Entity\Entreprise;添加到Stagiaire类。