Thymeleaf docs中有一个我很好奇的例子。
使用Thymeleaf风格的评论比使用th:remove="all-but-first"
更快地评论一个块吗?
示例:
<table>
<tr th:each="user : ${users}">
<td th:text="${user.name}">Jamie Dimon</td>
</tr>
<!--/* Hidden from evaluation -->
<tr>
<td>Jeff Bezos</td>
</tr>
<tr>
<td>Warren Buffett</td>
</tr>
<!--*/-->
</table>
VS。
<table th:remove="all-but-first">
<tr th:each="user : ${users}">
<td th:text="${user.name}">Jamie Dimon</td>
</tr>
<tr>
<td>Jeff Bezos</td>
</tr>
<tr>
<td>Warren Buffett</td>
</tr>
</table>
在这两种情况下,原型设计都会显示相同的HTML,但我想知道th:remove
的低优先级是否会使其不太理想,因为它会在评估th:each
之后删除标记。< / p>