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用法记录的主要内容,如果未能解决你的问题,请参考以下文章