片段包含的运算符优先级高于th:if。
http://www.thymeleaf.org/doc/tutorials/2.1/usingthymeleaf.html#attribute-
precedence
您可能必须将th:if移至上方的标签。在容器div中,或者如果仍然需要容器div,则可以使用如下所示的th:block:
<div > <th:block th:if="${results}"> <table th:replace="fragments/resultTable"> <tr> <th>Talent</th> <th>Score</th> </tr> <tr> <td>Confidence</td> <td>1.0</td> </tr> </table> </th:block></div>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)