Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Internet 上是否有可靠的 Web 服务返回当前的 Unix (UTC) 时间戳?
一个可行的解决方法是使用我们通过 HTTP 响应获得的响应标头。在像我这样的极少数情况下,当您没有直接访问 Web 服务器并且无法自己创建 API 时,您可以发送 XHR 并使用以下命令获取响应标头
response.getAllResponseHeaders()
然后解析date返回字符串中的值。当然,您必须信任服务器日期。我知道这是一个罕见的(也许是愚蠢的)用例,但它可能会发生。
date