我试图在我的Symfony2表单中使用Bootstrap3表单主题,如下所述:
http://symfony.com/blog/new-in-symfony-2-6-bootstrap-form-theme
我在主配置中添加了这个:
twig:
form:
resources: ['bootstrap_3_layout.html.twig']
并以各种形式添加:
{% form_theme form 'bootstrap_3_layout.html.twig' %}
类应用于html元素但不应用主题
我检查了页面源代码,发现没有bootstrap.css(我应该自己包含它吗?)
我包括了靴子,但我仍然有一个非常糟糕和凌乱的全宽文本框,没有其他任何影响!
我的symfony是2.6.4
(从2.5.10
升级)
有什么问题?
答案 0 :(得分:3)
使用Symfony> = 2.6,引导表单主题已作为框架的一部分提供,除了在config.yml
中设置资源外,您不需要做任何其他事情:
twig:
form:
resources: ['bootstrap_3_layout.html.twig']
您不需要在模板中定义{% form_theme %}
,因为表单模板/主题已经可用。您需要做的是在app/Resources/views/base.html.twig
(或任何基本模板)中包含bootstrap css / js文件。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</head>
<body>
{% block content %}{% endblock %}
</body>
</html>
然后,您只需在其他视图模板中扩展此基本模板,一切都应该正常工作。例如:
// App\MyBundle\Resources\views\homepage.html.twig
{% extends '::base.html.twig' %}
{% block content %}
// your html/forms/etc goes here; this content will then be rendered with the base.html.twig file as part of the "content" block in base.html.twig.
{% endblock %}
有关详细信息,请阅读documentation。