thymeleaf三元運算符

三元條件運算

標準版本:
三元運算符:(if) ? (then) : (else)spa

<p th:text="${user.online ? '在線' : '離線'}"> </p>
<p th:text="${user.online ? (user.vip ? 'VIP用戶在線' : '普通用戶在線') : '離線'}"> </p>
 
變態版本:

 <input type="radio" name="machineState" th:value="${dict.dictValue}" th:checked="${machine.machineState == null} ? ${dict.ok}:(${machine.machineState} == ${dict.dictValue})">code

相關文章
相關標籤/搜索