thymeleaf th:if表达式语法

风流意气都作罢 提交于 2019-12-01 02:07:30

1.比较运算符

gt:great than(大于)>
ge:great equal(大于等于)>=
eq:equal(等于)==
lt:less than(小于)<
le:less equal(小于等于)<=
ne:not equal(不等于)!=

2.网页应用

<td class="td-status" th:if="${product.status} eq 1">
<span class="label label-success radius">已上架</span>
</td>

<a th:if="${product.status} ne 2 " class="ml-5" href="javascript:;" title="发布秒杀">
<i class="Hui-iconfont">&#xe603;</i>
</a>

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!