我想添加一个额外的步骤进行注册。我有自己的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'),
));
service.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>
FirmaType:
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()方法答案 0 :(得分: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()
。