gpt4 book ai didi

javascript - 当前 UTC 时间独立于系统时钟吗?

转载 作者:行者123 更新时间:2023-12-03 03:02:33 29 4
gpt4 key购买 nike

无论系统时间设置为多少以及机器所在的时区,我都需要正确的 UTC 时间。

(即使我必须打电话到互联网才能同步......)

是否有一些库或其他方法可以优雅地做到这一点?

最佳答案

如果您想获得准确可靠的时间,那么您需要使用 NTP(网络时间协议(protocol))从受公众尊重的 NTP 服务器之一读取时间,更多信息请参见以下链接

对于 Node,有两种方法可以使用作为 Node 模块实现的实际 NTP 客户端之一来获取时间,我使用的第一个是 [this ntp client ]

var ntpClient = require('ntp-client');

ntpClient.getNetworkTime("pool.ntp.org", 123, function(err, date) {
if(err) {
console.error(err);
return;
}

console.log("Current time : ");
console.log(date); // Mon Jul 08 2013 21:31:31 GMT+0200 (Paris, Madrid (heure d’été))
});

有一些 JSON api 可以为您提供 JSON 格式的时间,您可以在 google 上搜索它们

关于javascript - 当前 UTC 时间独立于系统时钟吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47310179/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com