Thymeleaf内联文本显示null字符串为'null'

时间:2016-04-27 17:10:12

标签: string null thymeleaf

thymeleaf 2.1.4 中,使用

评估null String值时
let g:ctrlp_user_command = ['.git/', 'git ls-files --cached --others  --exclude-standard %s']

概述的html是

<p th:inline="text">[[${bean.myNullvar}]]</p>

当我使用 th:text 时,它可以正常工作:

<p>null</p>

概述为:

<p th:text="${myNullvar}"></p>

¿有没有办法将String null值作为空内值呈现? ¿它是如何在Thyeleaf 3中工作的,默认情况下内联是活动的?

提前致谢

1 个答案:

答案 0 :(得分:4)

Thymeleaf有一些字符串实用方法,你可以尝试

这是null安全的toString。

${#strings.toString(obj)}