運用於判斷表達式中時,關係判斷使用 gt / ge / eq / lt / le / ne (即:使用縮寫) 以th:if為例 更多thymeleaf詳情可以訪問易學教程 ...
運用於判斷表達式中時,關係判斷使用 gt / ge / eq / lt / le / ne (即:使用縮寫)
1 gt: great than(大於)>
2 ge: great equal(大於等於)>=
3 eq: equal(等於)==
4 lt: less than(小於)<
5 le: less equal(小於等於)<=
6 ne: not equal(不等於)!=
以th:if為例
1 <td th:if="${prj.DOC_DESC} ne null">
2 <!--此處ne若是換成not equal或者!=,則會js判斷錯誤,無法正常執行-->
3 <a th:href="#">下載</a>
4 <a th:href="#">預覽</a>
5 </td>
更多thymeleaf詳情可以訪問易學教程