最近项目后台架构采用springboot,在spring4.0中推荐使用thymeleaf来做前端模版引擎,Thymeleaf是一个java库,是XML、HTML5等格式的模板引擎,与Velocity、FreeMarker相似,可以用于Web项目和非Web项目。
Thymeleaf可以作为Spring MVC的可选模块,也可以直接作为JSP的替代。Thymeleaf提供了两个版本,标准和spring标准两种方言,并且可以通过创建自定义方言进行扩展。thymeleaf 的模板可以静态地运行;当有数据返回到页面时,Thymeleaf 标签会动态地替换掉静态内容,使页面动态显示。Thymeleaf的主要目标在于提供一种可被浏览器正确显示的、格式良好的模板创建方式,因此也可以用作静态建模。
定义代码片段
<footer th:fragment="copy">
© 2016
footer>
在页面任何地方引入:
<body>
<div th:include="footer :: copy">div>
<div th:replace="footer :: copy">div>
body>
th:include 和 th:replace区别,include只是加载,replace是替换
返回的HTML如下:
<body>
<div> © 2016 div>
<footer>© 2016 footer>
body>
下面是一个常用的后台页面布局,将整个页面分为头部,尾部、菜单栏、隐藏栏,点击菜单只改变content区域的页面
"layout-fixed">
<div th:fragment="navbar" class="wrapper" role="navigation">
<div th:replace="fragments/header :: header">Headerdiv>
<div th:replace="fragments/left :: left">leftdiv>
<div th:replace="fragments/sidebar :: sidebar">sidebardiv>
<div layout:fragment="content" id="content" >div>
<div th:replace="fragments/footer :: footer">footerdiv>
div>
任何页面想使用这样的布局值只需要替换中见的 content模块即可
"http://www.thymeleaf.org" layout:decorator="layout">
"content">
...
也可以在引用模版的时候传参
<head th:include="layout :: htmlhead" th:with="title='Hello'">head>
layout 是文件地址,如果有文件夹可以这样写 fileName/layout:htmlhead
htmlhead 是指定义的代码片段 如 th:fragment="copy"
<p th:text="${collect.description}">descriptionp>
<span th:text="'Welcome to our application, ' + ${user.name} + '!'">
字符串拼接还有另外一种简洁的写法
"|Welcome to our application, ${user.name}!|">
Thymeleaf中使用th:if和th:unless属性进行条件判断,下面的例子中,标签只有在
th:if
中条件成立时才显示:
<a th:if="${myself=='yes'}" > i> a>
<a th:unless=${session.user != null} th:href="@{/login}" >Logina>
th:unless于th:if恰好相反,只有表达式中的条件不成立,才会显示其内容。
也可以使用 (if) ? (then) : (else)
这种语法来判断显示的内容
<tr th:each="collect,iterStat : ${collects}">
<th scope="row" th:text="${collect.id}">1th>
<td >
<img th:src="${collect.webLogo}"/>
td>
<td th:text="${collect.url}">Marktd>
<td th:text="${collect.title}">Ottotd>
<td th:text="${collect.description}">@mdotd>
<td th:text="${terStat.index}">indextd>
tr>
iterStat称作状态变量,属性有:
URL在Web应用模板中占据着十分重要的地位,需要特别注意的是Thymeleaf对于URL的处理是通过语法@{…}来处理的。
如果需要Thymeleaf对URL进行渲染,那么务必使用th:href,th:src等属性,下面是一个例子
<a th:href="@{/standard/{type}(type=${type})}">viewa>
<a href="details.html" th:href="@{/order/{orderId}/details(orderId=${o.id})}">viewa>
设置背景
<div th:style="'background:url(' + @{/} + ');'" >div>
根据属性值改变背景
class="media-object resource-card-image" th:style="'background:url(' + @{(${collect.webLogo}=='' ? 'img/favicon.png' : ${collect.webLogo})} + ')'" >
几点说明:
(orderId=${o.id})
表示将括号内的内容作为URL参数处理,该语法避免使用字符串拼接,大大提高了可读性@{...}
表达式中可以通过{orderId}
访问Context中的orderId变量@{/order}
是Context相关的相对路径,在渲染时会自动添加上当前Web应用的Context名字,假设context名字为app,那么结果应该是/app/order内联文本:[[…]]内联文本的表示方式,使用时,必须先用th:inline=”text/JavaScript/none”激活,th:inline可以在父级标签内使用,甚至作为body的标签。内联文本尽管比th:text的代码少,不利于原型显示。
js附加代码:
/*[+
var msg = 'This is a working application';
+]*/
js移除代码:
/*[- */
var msg = 'This is a non-working template';
/* -]*/