11.12 模板引擎视图页面
我们使用Freemarker模板引擎。我们在templates目录下新建一个list.ftl文件,内容如下:
<html>
<head>
<title>Blog!!!</title>
</head>
<body>
<table>
<thead>
<th>序号</th>
<th>标题</th>
<th>作者</th>
<th>发表时间</th>
<th>操作</th>
</thead>
<tbody>
<#-- 使用FTL指令 -->
<#list articles as article>
<tr>
<td>${article.id}</td>
<td>${article.title}</td>
<td>${article.author}</td>
<td>${article.gmtModified}</td>
<td><a href="#" target="_blank">编辑</a></td>
</tr>
</#list>
</tbody>
</table>
</body>
</html>
其中,<#list articles as article>是Freemarker的循环指令,${}是 Freemarker引用变量的方式。
提示:关于Freemarker的详细语法可参考 http://freemarker.org/ 。
当前内容版权归 JackChan1999 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 JackChan1999 .