英文:
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)}"
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论