Thymeleaf检查null并相应地显示值

时间:2015-08-04 04:05:30

标签: html5 tooltip thymeleaf

如何在标题内显示user_nameuser_id

HTML

<div class="ui-widget tooltip-wrapper" data-toggle="tooltip" data-placement="right" th:title="*{user_id} + ${'-' + creator.user_name}" > </div>

我需要检查user_id是否为空并且user_name不为空,并在工具提示中显示。

示例:101 - Janet

我尝试了th:title="*{user_id!=null} + ${'-' + creator.user_name}"。 但它显示为true而不是实际值。

目前,如果该值为null,则它在工具提示中显示为null。但是我不希望显示值是null还是空。

任何人都可以帮忙解决这个问题。感谢。

1 个答案:

答案 0 :(得分:1)

试试这个

th:title="*{user_id?:''} + '-' +${creator.user_name?: ''}" 

您可以找到有关条件运算符&amp ;;的更多信息。 Elvis运营商documentation