如何在标题内显示user_name
和user_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还是空。
任何人都可以帮忙解决这个问题。感谢。
答案 0 :(得分:1)
试试这个
th:title="*{user_id?:''} + '-' +${creator.user_name?: ''}"
您可以找到有关条件运算符&amp ;;的更多信息。 Elvis运营商documentation。