1

我有一个在我网站上的许多页面上呈现的联系表格,我需要在许多不同的控制器中处理这个表格。如何在所有这些控制器中处理这种形式?我不想定义特殊的路由和控制器来处理这个表单,我需要在它呈现的所有页面中处理它。

现在我打电话给控制器动作女巫正在以这种方式呈现我的表单:

在控制器中:

    $profileAskFormResponse = $this->forward('MyBundle:Profile:profileAskForm', array(
                'user' => $user,
            ));          
    if ($profileAskFormResponse->isRedirection())
                return $profileAskFormResponse;

    return $this->render(MyBundle:Single:index.html.twig', array(
                'myStuff' => $myStuff,
                'profileAskForm' => $profileAskFormResponse,
   ));

在树枝上:

{{ profileAskForm.content|raw }}

我在每个需要处理我的联系表的控制器中使用此代码。有没有更简单的方法来做到这一点?我的第一个想法是在 twig 中做这种事情:

{% render 'MyBundle:Profile:profileAskForm' with {request: app.request, user: user} %}

但我无法在表单发送后从那里重定向。关键是,是否有一种简单快捷的调用方式(例如

来自 twig)这种组件,例如我的联系表单,该组件不仅呈现一些东西,而且有一些

应用程序逻辑。我会很高兴将这种组件用作砖块的女巫,我可以在任何地方轻松放置。

4

1 回答 1

0

一种可能性是创建一个类Contact.php,其中所有字段都作为类成员。然后,您可以非常轻松地将断言添加到每个字段:

/**
  * @Assert\NotBlank(message="Please fill in your e-mail at least")
  * @Assert\Email(checkMX = true)
  */
protected $email;

你可以为这个类创建一个表单类型ContactType.phpFormBuilder在其中使用:

$builder->add('email', 'email', array('label' => 'E-mail'));

然后,您可以在所有控制器中重新使用该表单。您甚至可以使用处理所有外发电子邮件的电子邮件类对其进行扩展,然后将有效的联系表单注入其中:

$contact = new Contact();
$form = $this->createForm(new ContactType(), $contact);

if ($request->getMethod() == 'POST') {
    $form->bindRequest($request);

    if ($form->isValid()) {
        // now you can easily inject the class to the one that handles e-mail traffic for example
        $email = new Email();
        $email->sendContactForm($contact);
    }
}

你可以在Symfony2 Cookbook: Forms中深入了解它。

于 2013-03-01T20:08:54.943 回答