如何在gwt java客户端中调用此库jsTimezoneDetect https://bitbucket.org/pellepim/jstimezonedetect
函数。我把它包含在html脚本中,现在必须调用它
var tz = jstz.determine();
tz.name();
我的问题是,如何在客户端gwt中调用它并发送给客户端?创建一个调用它的函数,如?:
static native void getTimeZone() /*-{
var tz = jstz.determine();
tz.name();
}-*/
答案 0 :(得分:1)
您必须使用分号关闭本机方法:
native String method()/*-{
// js code
return tz.name();
}-*/;