0

我在从 Symfony 2 表单中渲染树枝模板中的单个表单字段时遇到问题。在下面的示例中,我只是尝试呈现 first_name 表单字段。

此外, form_errors 从不渲染任何东西。

这是我的表单对象:

namespace ABC\WebsiteBundle\Form;

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

class LoanApplication extends AbstractType
{
  public function buildForm(FormBuilderInterface $builder, array $options)
  {
    $builder->add('first_name', 'text', array('required' => true));
  }

  public function getName()
  {
    return 'LoanApplication';
  }

  public function getDefaultOptions(array $options)
  {
    return array(
        //'data_class'      => 'Acme\TaskBundle\Entity\Task',
        'csrf_protection' => true,
        'csrf_field_name' => '_token',
        // a unique key to help generate the secret token
        'intention'       => 'loan_application',
    );
  }
}

这是控制器:

namespace ABC\WebsiteBundle\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use JML\WebsiteBundle\Form\LoanApplication;
use JML\WebsiteBundle\QuickBase as QuickBase;

class ApplyController extends Controller
{
  public function indexAction()
  {
    $form = $this->createForm(new LoanApplication());
    return $this->render('ABCWebsiteBundle:Apply:index.html.twig', array(
            'form' => $form->createView(),
        ));

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

        if ($form->isValid()) {
            // perform some action, such as saving the task to the database

            //return $this->redirect($this->generateUrl('task_success'));
        }
    }
  }
}

还有树枝:

<form action="{{ path('apply') }}" method="post" {{ form_enctype(form) }}>
<pre>
{{ dump(form_errors(form)) }} // always empty
</pre>
<div>
    {{ form_label(form.first_name) }} // this renders
    {{ form_widget(form.first_name) }} //empty
    {{ form_row(form.first_name) }}  //empty
</div>
  <input type="submit" formnovalidate/>
</form>
4

0 回答 0