如何将Thymeleaf显示的字符串大写到页面中?
我正在使用Thymeleaf作为模板引擎的Spring MVC应用程序上工作,并且试图将显示在页面中的一些字符串大写。在我的页面上,我有类似以下内容:
<li class="com__nav-item" th:each="menuItem : ${#authentication.principal.listaFunzioniUtente}"> <a href="" class="com__nav-link centered">
<span class="blue-line animate scaleIn delay-3" style="font-size: 1.4em; text-align: center;" th:text="${#strings.capitalize(menuItem.desFnz)}"></span>
<span class="white-circle animate scaleIn delay-5"></span>
</a>
</li>
如您在前面的代码中看到的,在第一个<span>
标记中,我desFnz
在menuItem
对象的属性内显示了一个字符串。
它工作正常,我的问题是我想将所有字符都大写,所以我尝试这样做:
th:text="${#strings.capitalize(menuItem.desFnz)}"
使用,#strings.capitalize()
但无法使用,实际上,在我的页面中,我仍然获得了文字,但没有大写。为什么?我想念什么?如何解决此问题?
回答:
#strings.capitalize(menuItem.desFnz)
仅将第一个字符大写,其中as
#strings.toUpperCase(menuItem.desFnz)
将整个字符串转换为大写。这是Strings类的文档。
以上是 如何将Thymeleaf显示的字符串大写到页面中? 的全部内容, 来源链接: utcz.com/qa/421582.html