关于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详情可以访问
推荐阅读
-
简介JavaScript中的setTime()方法的使用
-
在JavaScript中操作时间之setYear()方法的使用
-
JavaScript中的setUTCDate()方法使用详解
-
JavaScript中Date.toSource()方法的使用教程
-
python matplotlib中的subplot函数使用详解
-
JavaScript中setUTCFullYear()方法的使用简介
-
JavaScript中的toLocaleDateString()方法使用简介
-
详解JavaScript中Date.UTC()方法的使用
-
JavaScript中的Math.LOG2E属性使用详解
-
JavaScript中Math.SQRT2属性的使用详解