Symfony 3.1中的Bootstrap表单主题

时间:2016-06-24 11:18:09

标签: symfony

我想知道如何包含为Bootstrap 3设计的表单主题。这个选项是在Symfony 2.6中引入的,但在Symfony 3.1中它被移动或删除,因为这个解决方案不能正常工作:{{3 }}

当我尝试设置时:

twig:
debug:            "%kernel.debug%"
strict_variables: "%kernel.debug%"
form:
    resources: ['bootstrap_3_layout.html.twig']

我收到了这条消息:

  

致命错误:未捕获异常' Symfony \ Component \ Config \ Definition \ Exception \ InvalidConfigurationException'消息'无法识别的选项"表格"在" twig"'在......

我知道

{% form_theme form 'bootstrap_3_layout.html.twig' %}

并且效果很好,但我想在配置文件中永久设置此主题。

1 个答案:

答案 0 :(得分:29)

我认为配置密钥已更改。

尝试:

# app/config/config.yml
twig:
    form_themes:
        - 'bootstrap_3_layout.html.twig'
    # ...

http://symfony.com/doc/current/cookbook/form/form_customization.html#twig