Thymeleaf html页面如果可以检查?
如何检查百里香的这种状况..
我试过这个但没有工作
<tr th:each="s : ${patterns}">
<h3><p th:text="${s.questionPattern}" /></h3>
<tr th:each="q : ${questions}">
<!--This checking is possible ? -->
<div th:if="${#s.questionPattern == q.questionPattern.questionPattern}">
<p><input type="text" th:text="${q.questionName}" /></div>
</p>
</tr>
</tr>
我知道这不是正确的方式
如果你知道答案,请分享..
答案 0 :(得分:4)
使用Thymeleaf if if like this
<div th:if="${s.questionPattern ==q.questionPattern.questionPattern }">
不需要#
符号。