我将HTML标记从控制器发送到Thymeleaf页面,然后在Thymeleaf页面中显示HTML标记,如下所示
<div tags="remove">
<div id="accordian" th:utext="${strMenu}"></div>
</div>
但是我想检查Thymeleaf页面中strMenu
的值是否为空。
答案 0 :(得分:2)
使用猫王运算符?
,该运算符仅在表达式不是null
时才对表达式求值。 Thymeleaf部分4.11 Default expressions中的来源。
<div id="accordian" th:utext="${strMenu != null}? ${strMenu} : 'default value' "></div>
或
<div id="accordian" th:utext="${strMenu?}"></div>