是否有任何 json Rest 服务允许 javascript webapp 获取当前 UTC 时间?
我正在寻找类似 http://time.is/UTC 但具有 Web 应用程序界面的东西。
I'm looking for something like http://time.is/UTC but with an interface for web applications.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您不需要 SLA 级别的服务,Google App 引擎上有一项使用 JSONP 的服务:http: //json-time.appspot.com/
请求 http://json-time. appspot.com/time.json 将返回一个如下所示的对象:
如果您附加 ?callback=yourJsonCallback,它将做出如下响应:
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:
If you append ?callback=yourJsonCallback, it will respond like:
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/
这是否满足您的需求:http://developer.yahoo.com/util/timeservice /V1/getTime.html
Does this fulfill your needs: http://developer.yahoo.com/util/timeservice/V1/getTime.html
然后是这个: http://www.nanonull.com/TimeService/TimeService.asmx /获取UTC时间
它以以下格式返回 UTC:
这实际上似乎没什么帮助。
Then there is this one : http://www.nanonull.com/TimeService/TimeService.asmx/getUTCTime
It returns UTC in the following format :
Which actually seems less helpful.