Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用引导验证器来验证我的 Spring Boot Web 应用程序中的表单。此应用程序将以英语和马拉地语访问。
在验证错误消息的表单中以英语显示。有什么方法可以根据用户选择的语言偏好以其他语言显示错误消息?
如这个彻底和这个实用的答案所示,最简单的方法是添加一个简短的 javascript 片段来覆盖显示的文本值
<input oninvalid="this.setCustomValidity('Replace this with your code for getting language specific strings. I am an error. Boo!')">
我不确定 spring 的确切代码是什么样的,但这应该给你一个足够好的想法。