如何在 grails GSP 标记属性中获取本地化消息?

发布于 2024-09-06 02:36:03 字数 251 浏览 6 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

宫墨修音 2024-09-13 02:36:03

您可以直接调用标签:

<a href="..." title="${message(code:'your.localized.message.code')}">

我认为这也应该有效:

<a href="..." title="${g.message(code:'your.localized.message.code')}">

You can invoke the tag directly:

<a href="..." title="${message(code:'your.localized.message.code')}">

I think this should work too:

<a href="..." title="${g.message(code:'your.localized.message.code')}">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文