0

我想添加一个额外的步骤来注册。我有自己的 FormType“Firma”,它试图在 registerController 中加入我的附加方法。在控制器中调用此操作时出现错误:

Fatal error: Call to undefined method My\FrontendBundle\Form\Type\FirmaType::createView() in /var/www/Budowlanka/src/My/FrontendBundle/Controller/RegistrationController.php on line 107

RegisterController 中的 nextStepAction 动作

public function nextStepAction($token) {

    $user = $this->container->get('fos_user.user_manager')->findUserByConfirmationToken($token);

    if (null === $user) {
        throw new NotFoundHttpException(sprintf('The user with confirmation token "%s" does not exist', $token));
    }

    $this->container->get('fos_user.user_manager')->updateUser($user);

    $form = $this->container->get('my_user.firma.form.type');
    .
    . 
    .
    return $this->container->get('templating')->renderResponse('FOSUserBundle:Registration:register.html.' . $this->getEngine(), array(
                'form' => $form->createView(),
                'theme' => $this->container->getParameter('fos_user.template.theme'),
    ));

服务.xml:

<service id="my_user.firma.form.type" class="My\FrontendBundle\Form\Type\FirmaType">
    <tag name="form.type" alias="my_user_firma" />
    <argument>My\FrontendBundle\Entity\Firma</argument>
</service>

公司类型:

namespace My\FrontendBundle\Form\Type;

use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilder;

class FirmaType extends AbstractType
{
public function buildForm(FormBuilder $builder, array $options)
{
    $builder
        ->add('nazwa')
        ->add('ulica')
        ->add('nr_budynku')
        ->add('nr_lokalu')
        ->add('miasto')
        ->add('kod_pocztowy')
        ->add('poczta')
        ->add('telefon_1')
        ->add('telefon_2')
        ->add('email')
        ->add('www')
        ->add('liczba_opinii')
        ->add('nip')
        ->add('imie')
        ->add('nazwisko')
        ->add('haslo')
        ->add('logo')
        ->add('opis_uslug')
        ->add('data_dodania')
        ->add('data_modyfikacji')
        ->add('slug')
        ->add('specjalizacje')
    ;
}

public function getName()
{
    return 'my_frontendbundle_firmatype';
}
}

编辑:

它工作得很好,但现在我遇到了来自多对多关系字段的标签的问题。

          ->add('specjalizacja', 'entity', array(
                'label' => 'Specjalizacje',
                'multiple' => true, 
                'expanded' => true, 
                'property' => 'nazwa', 
                'class' => 'My\FrontendBundle\Entity\Specjalizacja',
                'query_builder' => function(\Doctrine\ORM\EntityRepository $er) {
                    $qb = $er->createQueryBuilder('g');

                    return $qb->orderBy('g.nazwa', 'DESC');
                }
            )

它显示“my_user_firma_form_specjalizacja_110”标签(110 是记录的 id)而不是实体的 Nazwa 字段。我在 Specjalizacja 实体类中有一个 __toString() 方法

4

1 回答 1

1

您应该使用 formFactory 来创建您的表单。

<service id="my_user.firma.form" factory-method="createNamed" factory-service="form.factory" class="Symfony\Component\Form\Form">
    <argument>my_user_firma</argument>
    <argument>'my_user_firma_form'</argument>
</service>

<service id="my_user.firma.form.type" class="My\FrontendBundle\Form\Type\FirmaType">
    <tag name="form.type" alias="my_user_firma" />
    <argument>My\FrontendBundle\Entity\Firma</argument>
</service>

然后打电话..

$form = $this->container->get('my_user.firma.form');

从这里你应该可以使用$form->createView().

于 2013-04-05T14:42:56.473 回答