在 JavaScript 中进行服务器时间同步监视的最佳方法

发布于 2024-12-12 02:01:56 字数 211 浏览 0 评论 0原文

我想做一个 js 监视:

  • 开始时间是服务器时间(服务器将在页面的源代码中提供该时间)。
  • 每秒更新一次。
  • (偏好,非强制)兼容最新版本的 gecko、webkit、presto 和 IE。

我已经检查过许多实现,但我想知道哪一个是最有效的。也就是说:占用 PC 资源较少的一种,并且是所有现有的一种中更精确的一种。

I'd like to make a js watch that:

  • Start time is server time (the server will supply that in the page's source code).
  • Updates every second.
  • (preference, not obligatory) Compatible with the latest versions of gecko, webkit, presto and IE.

I have already checked many implementations of this but I wanted to know which one is the most efficient one. That is: the one that takes less resources from the PC and the one that is more precise among all the ones that exist.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半夏半凉 2024-12-19 02:01:56

每秒滴答的时钟基本上就是动画,因此可以从递归 requestAnimationFrame< 中受益/code>(与回退到 setTimeout)。

var previousTime = 0;

function update(time) {
    if (time - previousTime >= 1000) {
        redrawClock(time);
        previousTime = time;
    }
    requestAnimationFrame(update);
}

使用 setInterval 时,您必须在每次迭代时创建一个 Date 对象,因为 setInterval 自身的延迟时间可能比其正式值更长。请参阅 John Resig 关于 JavaScript 定时器的精彩文章

requestAnimationFrame 相反是:

  1. 更高效,针对任务进行优化。
  2. 为其回调提供准确的时间戳。

A clock that ticks every second is basically animation, so one could benefit from recursive requestAnimationFrame (with fallback to setTimeout).

var previousTime = 0;

function update(time) {
    if (time - previousTime >= 1000) {
        redrawClock(time);
        previousTime = time;
    }
    requestAnimationFrame(update);
}

With setInterval you'd have to create a Date object on each iteration, because setInterval's own delay may take longer than it's formal value. See John Resig's brilliant article on timers in JavaScript.

requestAnimationFrame on the contrary is:

  1. More efficient, optimized for the task.
  2. Provides an accurate timestamp to it's callback.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文