评论速度比th快:remove =“all-but-first”?

时间:2018-02-01 05:20:02

标签: thymeleaf

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>

0 个答案:

没有答案