我正在编写SmartGWT应用程序,需要每30秒在客户端执行一次方法。在javascript中,我将使用setInterval或setTimeout。

如何在SmartGWT中做到这一点?

最佳答案

尝试使用计时器:

Timer t = new Timer() {
          public void run() {

             // do the callback here
          }
    };
    t.scheduleRepeating(30000); // repeat interval in milliseconds, e.g. 30000 = 30seconds

09-18 05:21