Grails i18 消息属性
我想更改 i18 消息属性文件中不同属性的 typemismatch.java.math.BigDecimal
的默认消息。
在文档中它说,使用 typeMismatch.$className.$propertyName
进行自定义,但这对我不起作用。
有没有人遇到过这个问题。任何帮助表示赞赏。
I want to change the default message for typemismatch.java.math.BigDecimal
in i18 message properties file for different properties.
In the documentation it says, use typeMismatch.$className.$propertyName
to customize but that does not work for me.
Did anyone come across this issue. Any help is appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
对于属性
foo
,以下内容应覆盖默认消息:For a property
foo
, the following should override the default message:对于属性
foo
:typeMismatch.foo=自定义消息
或者更具体地说,对于表单中的属性 foo:
typeMismatch.formName.foo=自定义消息
For a property
foo
:typeMismatch.foo=Custom message
Or more specific, for a property foo in a form:
typeMismatch.formName.foo=Custom message
要覆盖默认消息,您需要文档
typeMismatch.$className.$propertyName
的$className
处的完全限定类名。例如。
typeMismatch.com.xxx.hrms.Employee.salary=请输入有效号码
To override the default message, you need fully qualified class name at
$className
of documentationtypeMismatch.$className.$propertyName
.Eg.
typeMismatch.com.xxx.hrms.Employee.salary=Please Enter valid number