Thymeleaf页面如果条件检查可能吗?

时间:2013-09-02 05:34:45

标签: html thymeleaf

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>

我知道这不是正确的方式

如果你知道答案,请分享..

1 个答案:

答案 0 :(得分:4)

使用Thymeleaf if if like this

<div  th:if="${s.questionPattern ==q.questionPattern.questionPattern }">

不需要#符号。