0

如何从messages.properties文件在外部 java 脚本文件上设置错误消息,以便错误消息将根据本地或英语、德语等语言自动更改。

如何使用<g:message code="" default="" />${message(code:'',default:'')}外部 java 脚本文件上?

4

1 回答 1

0

在我的应用程序中,我通过以下方式将模型对象传递给 javascript:

<g:javascript>
    // Scroll the page to the position of the add button clicked by the user
    jQuery(document).ready(function() {
            window.scrollBy(0, ${pageScroll}); 
        });     
</g:javascript>

在您的示例中,您可以使用标签定义一个新变量

<g:set var="tranlsatedLabel" value="${g.message(..)}"/> 

你可以像我上面展示的那样通过它。

于 2015-12-15T12:21:49.513 回答