自定义表格不起作用

时间:2018-06-22 10:47:38

标签: php symfony

我正在尝试在Symfony 3.3.2(https://symfony.com/doc/2.8/form/form_customization.html)中自定义表单渲染。

app / Resources / views / form / fields.html.twig

{% block test %}
  <p>TEST</p>
{% endblock %}

app / Resources / views / default / new.html.twig

{% form_theme form 'form/fields.html.twig' %}

{{ form_widget(form.age) }}
{{ block('test') }}

src / AppBundle / Controller / DefaultController.php

class DefaultController extends Controller
{
    public function indexAction(Request $request)
    {
      $test = new Test();
      $test->setAge(8);

      $form = $this->createForm(TestType::class, $test);

      return $this->render('default/new.html.twig', array(
      'form' => $form->createView(),
      ));
    }
}

src / AppBundle / Entity / Test.php

namespace AppBundle\Entity;

class Test
{
    protected $age;

    public function getAge()
    {
        return $this->age;
    }

    public function setAge($age)
    {
        $this->age = $age;
    }
}

src / AppBundle / Form / TestType.php

class TestType extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder
            ->add('age')
        ;
    }

    public function configureOptions(OptionsResolver $resolver)
    {
        $resolver->setDefaults(array(
            'data_class' => Test::class,
        ));
    }
}

app / config / config.yml

twig:
    debug: '%kernel.debug%'
    strict_variables: '%kernel.debug%'
    form_themes:
      - 'form/fields.html.twig'

我想我误会了一些东西,因为我希望看到输入中带有8号且在字符串“ TEXT”下方的输入,但是实际上,我只是输入了。那么如何在new.html.twig中插入自定义块呢?

1 个答案:

答案 0 :(得分:0)

form_theme并不是包含其他块的方法,它只是带有某些约定的样式。如果需要为表单赋予样式,则只需使用主题和form_widget。 如果需要包括其他一些块,请创建该块(在单独的文件中,甚至在同一文件中),然后在embedinclude指令之间进行选择。 对于embedinclude之间的区别,我建议阅读this SO answer