将i18n消息作为参数传递给Grails模板
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将i18n消息作为参数传递给Grails模板相关的知识,希望对你有一定的参考价值。
我有一个Grails模板文件,我在多个.gsp视图中使用,被调用如下:
<g:render template="/template/mail/notification/notification_email" model="[
title: 'A string',
text: 'Another string',
]"/>
但是,我想将A string
和Another string
移动到messages.properties文件中。
如果我不能在<g:message>
标签内使用<g:render>
,我怎样才能将模板模型值设置为正确的值?
答案
以下适用于我:
<g:render template="/template/mail/notification/notification_email" model="[
title: g.message( code: 'your.title' ),
text: g.message( code: 'your.text' ),
]"/>
以上是关于将i18n消息作为参数传递给Grails模板的主要内容,如果未能解决你的问题,请参考以下文章