thymeleaf用法记录

Posted webttt

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thymeleaf用法记录相关的知识,希望对你有一定的参考价值。

参考链接:https://www.cnblogs.com/topwill/p/7434955.html

1、基本循环

<tr th:each="prod : $prods">

     <td th:text="$prod.name">Onions</td>
     <td th:text="$prod.price">2.41</td>
     <td th:text="$prod.inStock? #true : #false">yes</td>
</tr>

2、th:href用法

 <a data-toggle="collapse" th:href="@‘tabs_panels.html#‘+$attrGroup.name" th:text="$attrGroup.name"></a>

以上是关于thymeleaf用法记录的主要内容,如果未能解决你的问题,请参考以下文章

thymeleaf模板引擎基础使用(转)

Thymeleaf模板引擎用法总结

Thymeleaf 基本用法总结

springboot页面模板thymeleaf的简单用法

thymeleaf layout

thymeleaf的常见问题汇总