是否有任何 json Rest 服务允许 javascript webapp 获取当前 UTC 时间?

发布于 2024-10-27 22:06:22 字数 100 浏览 2 评论 0原文

我正在寻找类似 http://time.is/UTC 但具有 Web 应用程序界面的东西。

I'm looking for something like http://time.is/UTC but with an interface for web applications.

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

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

发布评论

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

评论(3

一张白纸 2024-11-03 22:06:22

如果您不需要 SLA 级别的服务,Google App 引擎上有一项使用 JSONP 的服务:http: //json-time.appspot.com/

请求 http://json-time. appspot.com/time.json 将返回一个如下所示的对象:

{
  "tz": "UTC", 
  "hour": 23, 
  "datetime": "Wed, 30 Mar 2011 23:03:55 +0000", 
  "second": 55, 
  "error": false, 
  "minute": 3
}

如果您附加 ?callback=yourJsonCallback,它将做出如下响应:

yourJsonCallback({
  "tz": "UTC", 
  "hour": 23, 
  "datetime": "Wed, 30 Mar 2011 23:05:36 +0000", 
  "second": 36, 
  "error": false, 
  "minute": 5
})

James Padolsey 有一篇不错的博客文章,演示了如何使用纯 JavaScript 和各种方式使用该服务jQuery 等库: http://james.padolsey.com /未分类/在-javascript中获取实时数据/

If you don't need an SLA-level service, there's a service here on Google App engine that speaks JSONP: http://json-time.appspot.com/

Requesting http://json-time.appspot.com/time.json will return an object like this:

{
  "tz": "UTC", 
  "hour": 23, 
  "datetime": "Wed, 30 Mar 2011 23:03:55 +0000", 
  "second": 55, 
  "error": false, 
  "minute": 3
}

If you append ?callback=yourJsonCallback, it will respond like:

yourJsonCallback({
  "tz": "UTC", 
  "hour": 23, 
  "datetime": "Wed, 30 Mar 2011 23:05:36 +0000", 
  "second": 36, 
  "error": false, 
  "minute": 5
})

James Padolsey has a nice blog post demonstrating how to consume the service with plain JavaScript and a variety of libraries like jQuery: http://james.padolsey.com/uncategorized/getting-the-real-time-in-javascript/

池予 2024-11-03 22:06:22

然后是这个: http://www.nanonull.com/TimeService/TimeService.asmx /获取UTC时间
它以以下格式返回 UTC:

<?xml version="1.0" encoding="utf-8"?>
<string xmlns="http://www.Nanonull.com/TimeService/">10:43 PM</string>

这实际上似乎没什么帮助。

Then there is this one : http://www.nanonull.com/TimeService/TimeService.asmx/getUTCTime
It returns UTC in the following format :

<?xml version="1.0" encoding="utf-8"?>
<string xmlns="http://www.Nanonull.com/TimeService/">10:43 PM</string>

Which actually seems less helpful.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文