在GSP中,我想传递给agrs
中的<g:message code='myCode' args='link'>
个链接,我尝试args="${createLink(controller:'myCon',action:'myAc')}"
,但这不起作用。
有什么想法吗?
答案 0 :(得分:3)
使用messages.properties
文件
my.message.key=Just a link to <a href="{0}">Something</a>
然后像这样调用它:
<g:message code="my.message.key" args="[createLink(controller: 'foo', action: 'baz')]" />
请记住,消息代码的参数是一个数组,因此上面使用括号。