如何使 struts bean:message 在找不到翻译的情况下返回密钥本身?
我正在使用 struts bean:message 进行翻译。
<bean:message key="somekey"/>
如果我在一些key的translation_en.properties中有价值,我就会得到正确的响应。根据我的要求,我可能还拥有可能没有翻译的密钥,在这种情况下,我需要显示“somekey”。但是,struts 返回“???en.somekey???”当在属性中找不到该值时。
I am using struts bean:message for translation.
<bean:message key="somekey"/>
If I have value in the translation_en.properties for somekey, I am getting the response properly. In my requirement I may also have keys that may not have the translations and in such case, I need the "somekey" to be displayed. But, struts is returning "???en.somekey???" when the value is not found in properties.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想目前还不可能。除非你要求改变struts团队。
但是您可以通过模仿
的操作来定制自己的标记,并稍微更改逻辑。也作为一种解决方法。您只需在属性中定义 key=key 即可。
I guess not possible yet. Unless you request a change to the struts team.
But it's possible that you tailor your own tag by mimicking what
<bean:message>
do and change the logic just a little bit.Also as a workaround. You can just define in the properties key=key.