独立于用户系统时钟检索当前时间的最佳做法是什么?

what is best practice for retrieving the current time independent of user's system clock?

在 slate 函数中,我们一直在使用 javascript 的新 Date() 函数来设置提交时间戳,但是,这引入了对用户系统时间的依赖。 slate 中是否有任何函数或库可以拉出更多 objective 时间戳?**

也许尝试将 Javascript 函数从 new Date() 更改为 new Date().toISOString(),它将把日期从本地时区更新为协调世界时 (UTC),所以无论用户位于何处,提交时间都将是UTC时间戳。

我还发现这篇文章列出了 Javascript 的许多有用的 date/time 函数,希望对您有所帮助:https://www.toptal.com/software/definitive-guide-to-datetime-manipulation