Apple Dashboard Widget setTimeout不工作

时间:2014-05-15 15:09:29

标签: javascript widget dashboard

我正在处理基于日历的仪表板小部件,我希望在新的一天开始时自动更新。但是,我似乎无法让它实际更新。它似乎在浏览器中运行良好。我还尝试手动输入setTimeout延迟到更短的时间(比如1或2分钟),这似乎有效。

这是我的代码:

function Calendar() {
    var _self = this;

    this.daytimer = null;
    this.daytimerAction = function() {
        _self.updateCurrentDate();
    }
    this.resetDaytimer();
}

Calendar.prototype.resetDaytimer = function() {
    var today = new Date(),
        tomorrow = new Date();

    if (this.daytimer) {
        clearTimeout(this.daytimer);
        this.daytimer = null;
    }

    tomorrow.setDate(today.getDate() + 1);
    tomorrow.setHours(0);
    tomorrow.setMinutes(0);
    tomorrow.setSeconds(1);

    this.daytimer = setTimeout(this.daytimerAction, tomorrow.getTime() - today.getTime());
};

Calendar.prototype.updateCurrentDate = function() {
    // Run code to update the day display

    this.resetDaytimer();
};

有什么想法?我唯一能想到的是仪表板在仪表板运行时暂停/取消setTimeout。也许有一种方法可以在重新激活仪表板时重置超时?

1 个答案:

答案 0 :(得分:0)

想出来。 Apple documentation概述了我可用于重新启动计时器的widget.onshow事件以及直接调用updateCurrentDate()。还有一个widget.onhide事件可用于暂停计时器。