Thymeleaf 使っていますか? 私は Kotlin と Spring をあわせて使っています。
条件文などを書く場合に、 div
などのタグで書くとアウトプットされてしまうので、 論理的なブロックを使う書き方を紹介します。
環境
- Thymeleaf 2.1.4
方法
th:block
を使います。
1 2 3 4 5 6 7 8 9 10 |
<th:block th:if="${condition}"> something you want to show </th:block> <th:block th:switch="${value}"> <th:block th:case="1"> </th:block> <th:block th:case="2"> </th:block> </th:block> |