以JSON格式显示日期的在线服务

时间:2015-08-04 07:06:22

标签: json web-services

我正在寻找一个只提供JSON格式的当前日期的网络服务。

Google搜索绝对没有任何内容,所以我想问你是否知道一个可靠的。

1 个答案:

答案 0 :(得分:2)

这是一个,这将以UTC格式的纯文本返回时间。

http://www.timeapi.org/utc/now

这将以JSON格式返回时间 http://www.timeapi.org/utc/now.json

您可以在查询本身中指定各种时区,例如 http://www.timeapi.org/pdt/now会在PDT时区给你时间。 homepage还指定了许多其他选项。

为了获得JSON格式的数据,如下所示

<script type="text/javascript">
      function myCallback(json) {
        alert(new Date(json.dateString));
      }
    </script>
    <script type="text/javascript" src="http://timeapi.org/pdt/now.json?callback=myCallback"></script>

你也可以看看 http://www.geonames.org/export/ws-overview.html

以下是示例output in JSON format