Spring MVC Thymelaf片段问题

时间:2016-01-16 15:08:52

标签: spring twitter-bootstrap spring-mvc twitter-bootstrap-3 thymeleaf

我正在使用Spring MVC 4.2Thymeleaf 2.1构建一些Web应用程序。

我正在使用this管理信息中心模板。我创建了Thymeleaf片段" main"用于导航和侧边栏。

通常它应该是这样的。

normal

但我得到了这个。

anormal

还有其他吸引力。你可以看到问题

enter image description here

当我在页面的开头包含main片段时,它无法到达id=page-wrapper,因为page-wrapper必须位于wrapper元素内部。但就我而言,它还没有wrapper元素。

它无法左对齐。我怎样才能正确地包含我的主要片段。

更正html。

<div th:fragment="main">
  <div id="wrapper">
    <nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">            
    </nav>
    <div id="page-wrapper">
    </div>
   </div>
</div>

我的HTML。

<div th:fragment="main">
  <div id="wrapper">
    <nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">            
    </nav>
  </div>
</div>
<div id="page-wrapper">
</div>

1 个答案:

答案 0 :(得分:0)

我在#include <stdio.h> #include <stdlib.h> #define A #define C int main() { int i = #ifdef A #ifdef B // if A AND B is defined -1 #else // A is defined AND B is NOT defined -2 #endif #else // A is not defined -3 #endif ; printf("%d \n", i); } 下使用了page-wrapper并制作了wrapper并解决了我的问题。