如何将所有Thymeleaf输入字段转换为大写?

huangapple go评论148阅读模式
英文:

How to convert all thymeleaf input fields toUpperCase?

问题

可以直接将输入的值转换为大写吗?
类似伪代码:

th:value="${#StringUtils.toUpperCase(dto.field)}"
英文:
<input class="form-control"
           type="text"
           th:value="${dto.field}" name="field" />

Is it possible to directly convert the input values to upper case?
Like pseudocode:

th:value="${#StringUtils.toUpperCase(dto.field)}"

答案1

得分: 2

你可以使用#strings实用对象访问StringUtils类中的方法。

在你的情况下:

th:value="${#strings.toUpperCase(dto.field)}"
英文:

You can access methods from the StringUtils class using the #strings utility object.

In your case:

th:value="${#strings.toUpperCase(dto.field)}"

huangapple
  • 本文由 发表于 2020年8月12日 16:46:30
  • 转载请务必保留本文链接:https://go.coder-hub.com/63373000.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定