我正在使用 g:render grails 标签来避免在我的应用程序中重复 HTML 的公共部分以重复。现在我需要在其中的一些中通过 message.properties 文件传递一些属性,例如部分的标题,以便可以翻译这些属性。为了使它工作,我使用了这个结构:
<g:set var="title" value="${g.message (code: 'completed.thanks')}" />
<g:render template="thankYou" contextPath="/completed/" model="[title:title,other:other]" />
但我想知道是否有更好的解决方案可以在渲染标签本身的模型中提供字符串。