如何从消息.属性文件在外部java脚本文件上设置错误消息,以便错误消息将根据本地或英语、德语等语言自动更改。
如何在外部java脚本文件上使用<g:message code="" default="" />
或${message(code:'',default:'')}
?
在我的应用程序中,我以以下方式将模型对象传递给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(..)}"/>
你可以像我上面展示的那样通过它。