2

我尝试在同一页面上进行简单的登录注册。

  • 一种登记表
  • 一种登录表格。

我设法在我想要的页面上呈现 2 个表单,但是如果我尝试提交注册表单,它会给我一个消息,即另一个表单不能为空。

在我尝试合并页面之前,我的注册没有任何问题,我的登录没有(刚刚创建表单)我的代码:

AccountController.php呈现给模板的文件。

表单创建已在 inRegistrationType.php和 in 中实现LoginType.php

<?php
namespace Spyros\MapBundle\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Spyros\MapBundle\Form\Type\RegistrationType;
use Spyros\MapBundle\Form\Type\LoginType;
use Spyros\MapBundle\Form\Model\Registration;
use Spyros\MapBundle\Form\Model\Login;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;

class AccountController extends Controller
{
    public function registerAction()
    {
        $registration = new Registration();
        $form1 = $this->createForm(new RegistrationType() , $registration, array(
            'action' => $this->generateUrl('account_create') ,
        ));

        $login = new Login();
        $form2 = $this->createForm(new LoginType() , $login, array(
            'action' => $this->generateUrl('account_create') ,
        ));

        return $this->render('SpyrosMapBundle:Account:register.html.twig', array(
            'form1' => $form1->createView() ,
            'form2' => $form2->createView()
        ));

    }

    public function createAction(Request $request)
    {

        $em = $this->getDoctrine()->getManager();

        $form1 = $this->createForm(new RegistrationType() , new Registration());

        $form1 > handleRequest($request);

        if ($form1->isValid())
        {
            $registration = $form1->getData();

            $em->persist($registration->getUser());
            $em->flush();
            echo "<p>hi</p>";
        }
        return $this->render('SpyrosMapBundle:Account:register.html.twig', array(
            'form1' => $form1->createView()
        ));

    }

}

register.html.twig:

{% extends 'SpyrosMapBundle::rightform.html.twig' %}
{% form_theme form1 'bootstrap_3_layout.html.twig' %}
{% form_theme form2 'bootstrap_3_layout.html.twig' %}
{% block body %}
<body>
   <section class="container">
      <section class="row">
         <section class="col col-lg-9">
            {{ form_start(form2 , {'attr': {'class': 'form-inline'}} )}}
            {{ form_row(form2.user.email)}}
            {{ form_row(form2.user.plainPassword)}}
            <div id="inline">
               {{ form_row(form2.Login) }}
            </div>
         </section>
         <section class="col col-lg-3">
            {{ form(form1) }}
         </section>
      </section>
   </section>
</body>
{% endblock %}

我的视图页面:

我的查看页面

我如何在没有 form2 的情况下提交我的注册表单(form1)给我一条消息以填写其字段。

4

1 回答 1

3

我假设是您的浏览器抱怨空白字段?Symfony 2 表单中不太有趣的事情之一是,默认情况下,所有字段都是必需的。这是通过在输入元素本身上设置必需属性来实现的。然后浏览器处理该属性。

有几种方法可以解决这个问题。创建元素时设置 required = false :

     $builder->add('name','text', array(
        'required' => false,  /***** Make it optional *****/
        'label'    => 'Your Name',
        'trim'     => true,
        'constraints' => array(
            new NotBlankConstraint($constraintOptions),
        ),
        'attr' => array('size' => 30),
    ));

您还可以在创建表单时将其传递给表单选项,因此默认情况下所有内容都是可选的。

您还可以在 twig 模板中向表单元素本身添加一个简单的 novalidate 属性。

顺便说一句,正如@Spiro 建议的那样,如果您使用的是内置安全系统,那么您需要将每个表单提交到不同的 url。否则安全系统将拦截您的创建用户请求。

http://symfony.com/doc/current/reference/forms/types/form.html#required

于 2014-12-03T15:47:38.027 回答