Symfony2:如何在FormType中调用实体的存储库 [英] Symfony2: How call the repository of an entity in the FormType

查看:64
本文介绍了Symfony2:如何在FormType中调用实体的存储库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我尝试以我的实体BonCommande的类形式调用我的实体Category的存储库,但是出现了此错误:

I tried to call the repository of my entity Category in the class form of my entity BonCommande, but this error ocuured:

通知:未定义的属性:Application \ VehiculeBundle \ Form \ BonCommandeType :: $ em in C:\ wamp \ www \ Symfony_test \ src \ Application \ VehiculeBundle \ Form \ BonCommandeType.php 74行

Notice: Undefined property: Application\VehiculeBundle\Form\BonCommandeType::$em in C:\wamp\www\Symfony_test\src\Application\VehiculeBundle\Form\BonCommandeType.php line 74

这是我的代码:

BonCommandeType.php类:

namespace Application\VehiculeBundle\Form;

use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
use Symfony\Component\Form\FormEvent;
use Symfony\Component\Form\FormEvents;
use Symfony\Component\Form\FormInterface;
use Application\VehiculeBundle\Entity\Category;

class BonCommandeType extends AbstractType
{
        /**
     * @param FormBuilderInterface $builder
     * @param array $options
     */
       public function buildForm(FormBuilderInterface $builder, array $options)
    {
        // Name of the user
        $builder->add('observation', 'text');


    /* Add additional fields... */

    $builder->add('save', 'submit');

    // Add listeners
    $builder->addEventListener(FormEvents::PRE_SET_DATA, array($this, 'onPreSetData'));
    $builder->addEventListener(FormEvents::PRE_SUBMIT, array($this, 'onPreSubmit'));
}


protected function addElements(FormInterface $form, Category $categorie = null) {
    // Remove the submit button, we will place this at the end of the form later
    $submit = $form->get('save');
    $form->remove('save');


    // Add the province element
    $form->add('categorie', 'entity', array(
        'data' => $categorie,
        'empty_value' => '-- Choose --',
        'class' => 'ApplicationVehiculeBundle:Category',
        'property' => 'intitule',
        'mapped' => false)
    );

    // Cities are empty, unless we actually supplied a province
    $vehicules = array();
    if ($categorie) {
        // Fetch the cities from specified province
        $repo = $this->em->getRepository('ApplicationVehiculeBundle:Vehicule');
        $cities = $repo->findByCategory($categorie);
    }

    // Add the city element
    $form->add('vehicule', 'entity', array(
        'empty_value' => '-- Select a categorie first --',
        'class' => 'ApplicationVehiculeBundle:Vehicule',
        'choices' => $vehicules,
    ));

    // Add submit button again, this time, it's back at the end of the form
    $form->add($submit);
}


function onPreSubmit(FormEvent $event) {
    $form = $event->getForm();
    $data = $event->getData();

    // Note that the data is not yet hydrated into the entity.
    $categorie = $this->em->getRepository('ApplicationVehiculeBundle:Category')->find($data['categorie']);
    $this->addElements($form, $categorie);
}


function onPreSetData(FormEvent $event) {
    $account = $event->getData();
    $form = $event->getForm();

    // We might have an empty account (when we insert a new account, for instance)
    $categorie = $account->getVehicule() ? $account->getVehicule()->getCategorie() : null;
    $this->addElements($form, $categorie);
}
...
}

这是导致错误的指令:

$categorie = $this->em->getRepository('ApplicationVehiculeBundle:Category')->find($data['categorie']);

推荐答案

从您的代码中,我认为您缺少此信息:

From your code I assume you are missing this:

//Somewhere at the begging of your BonCommandeType
protected $em;
...
public function __construct(EntityManager $em) 
{
    $this->em = $em;
}

请记住,当您创建一个新的表单对象时,您应该使用诸如:

Keep in mind that when you create a new form object you should use smth like :

BonCommandeType($this->getDoctrine()->getManager()) // if inside a controller

这篇关于Symfony2:如何在FormType中调用实体的存储库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆