dqhdpppm02183 2015-08-22 17:09
浏览 64
已采纳

Symfony2我的提交按钮没有显示在$ form-> createView()上

New Symfony user here.. I'm experimenting with different ways of creating forms on my own by hand, so I may learn more about how symfony works. I've created a form based on an Entity. The form displays but the submit button does not show up.

/**
 * @Route("/register")
 * @Template()
 */
public function registerAction(Request $request)
{
    $user = new User();
    $form = $this->createForm(new RegisterType(), $user);
    $form->handleRequest($request);
    if ($form->isSubmitted() && $form->isValid()) {
        $user = $form-getData();
        $user->setPassword($this->encodePassword($user, $user->getPlainPassword()));
        $em = $this->getDoctrine()->getManager();
        $em->persist($user);
        $em->flush();
        $url = $this->generateUrl('/home');
        return $this->redirect($url);
    }

    return array(
        'entity' => $user,
        'form'   => $form->createView(),
    );   
}

And for now just a minimal template.

{% extends '::base.html.twig' %}
{% block body -%}
<h1>Register</h1>
{{ form(form) }}
{% endblock %}

And here is the type.

<?php
namespace AppBundle\Form;

use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;

class RegisterType extends AbstractType {

    /**
     * @param FormBuilderInterface $builder
     * @param array $options
     */
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder
            ->add('username', 'text')
            ->add('email', 'email')
            ->add('plainPassword', 'repeated', array(
                'type'=>'password'));
    }


    /**
     * @param OptionsResolverInterface $resolver
     */
    public function setDefaultOptions(OptionsResolverInterface $resolver)
    {
        $resolver->setDefaults(array(
            'data_class' => 'AppBundle\Entity\User'
        ));
    }

    /**
     * @return string
     */
    public function getName()
    {
        return 'registration_form';
    }

 }
  • 写回答

2条回答 默认 最新

  • dsh1956 2015-08-22 17:31
    关注

    As I said in my comment, submit type was missing, which leads to a missing submit button. I don't know exactly which example you have been reading, but pretty much most of them have this added in Symfony's official documentation.

    More on the subject can be found here.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog