欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

关于thymeleaf中th:if的使用

程序员文章站 2023-02-03 07:58:14
运用于判断表达式中时,关系判断使用 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详情可以访问