如何在 grails GSP 标记属性中获取本地化消息?
在 grails GSP 中,我希望本地化工具提示:
<a href="..." title="localizedMessage">
由于工具提示是写在属性标题中的,所以我不能在这里使用
。实际上,我已经有一个本地化消息服务,但是当我从 GSP 调用它时,该服务的 messageSource 为空,因此让它正常工作也是一个解决方案。
In a grails GSP, I want a toolTip to be localized:
<a href="..." title="localizedMessage">
As the toolTip is written in the attribute title, I can't use <g:message>
here. Actually I already have a service for localized messages, but when I call it from the GSP, the service's messageSource is null, so getting that to work would be a solution as well.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以直接调用标签:
我认为这也应该有效:
You can invoke the tag directly:
I think this should work too: