关于thymeleaf中th:if的使用
程序员文章站
2022-04-14 20:45:42
运用于判断表达式中时,关系判断使用 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详情可以访问
上一篇: Shell 编程 循环语句