我在 Struts 框架上使用 Direct Web Remoting 来显示一些 I18N 值。
例如,
>文件名 = Test.js
function test()
{
DWRutil.getMyAlert("i18n.test.javascript.alert",function(str){
alert(str);
});
}
在 DWRUtil 的 getMyAlert 方法中,从 applicationresources.properties 返回 I18N 值
问题:
是否有任何选项可以将 I18N 值从 applicationresources.properties 直接加载到 Test.js?