首页 > 代码库 > thymeleaf条件表达式

thymeleaf条件表达式

条件表达式形式:condition, then and else

<tr th:class="${row.even}? ‘even‘ : ‘odd‘">  ...</tr>

混合使用表达式实例:

<tr th:class="${row.even}? (${row.first}? ‘first‘ : ‘even‘) : ‘odd‘">  ...</tr>

 

其他表达式也可以省略,在这种情况下,返回一个null值如果条件是错误的

<tr th:class="${row.even}? ‘alt‘">  ...</tr>

 

thymeleaf条件表达式