我想对grails中的message标签使用动态代码。
我的代码:
{{props data}}
<tr>
<td><g:message code="transactionStore.{{html:key}}"/></td>
<td>{{>prop}}</td>
</tr>
{{/props}}
在messages.properties中,我定义了代码transactionStore.class = Test
但是在我的输出中,看起来像是:transactionStore.class,因此消息不会被替换。
我该如何解决?