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 stm32代码移植没反应
  • ¥15 matlab基于pde算法图像修复,为什么只能对示例图像有效
  • ¥100 连续两帧图像高速减法
  • ¥15 组策略中的计算机配置策略无法下发
  • ¥15 如何绘制动力学系统的相图
  • ¥15 对接wps接口实现获取元数据
  • ¥20 给自己本科IT专业毕业的妹m找个实习工作
  • ¥15 用友U8:向一个无法连接的网络尝试了一个套接字操作,如何解决?
  • ¥30 我的代码按理说完成了模型的搭建、训练、验证测试等工作(标签-网络|关键词-变化检测)
  • ¥50 mac mini外接显示器 画质字体模糊