我直接按照说明操作说明。我在config.yml
中有这个配置设置twig:
form:
resources: ['bootstrap_3_layout.html.twig']
没有达到这个目的,但在我的base.html.twig中我有...
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"
integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7"
crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css"
integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r"
crossorigin="anonymous">
{% block stylesheets %}{% endblock %}
当然在base.html.twig底部适当调用了jquery和boostrap.js
在我的任何模板中......
{% extends 'base.html.twig' %}
{% form_theme form 'bootstrap_3_layout.html.twig' %}
{% block body %} //etc. etc.
我收到错误:
InvalidConfigurationException in ArrayNode.php line 317:
Unrecognized option "form" under "twig"
他们是否更改了yml配置设置而未在手册中更新?
答案 0 :(得分:25)
在较新的Symfony版本中,您必须使用form_themes
代替form.resources
:
# app/config/config.yml
twig:
form_themes: ['bootstrap_3_layout.html.twig']
而且,您无需将其添加到模板中:
{% form_theme form 'bootstrap_3_layout.html.twig' %}
您可以安全地删除该标记,表单仍将使用Bootstrap表单主题(因为您在config.yml
文件中全局配置了它。)
答案 1 :(得分:3)
对于相关的框架版本,该文档可能是神秘的。
试试这个:
config.yml
g++ -ggdb -std=c++14 -nostdlib -fno-builtin -fno-exceptions 1.cc
在这里查看TWIG bundle documentation以查看相关捆绑配置的完整文档。
希望这个帮助