gpt4 book ai didi

javascript - 有谁知道一个好的 JSON 时间服务器?

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:05:29 25 4
gpt4 key购买 nike

我需要使用 JSON 获取当前时间(从可靠的来源)。精确时间在我的应用程序中至关重要,因此我不能依赖设备的时间,即使它只有一两秒。

编辑:我并不担心“精度”,而只是让运行该应用程序的多台设备具有相同的时间。

最佳答案

function getTime(zone, success) {
var url = 'http://json-time.appspot.com/time.json?tz=' + zone,
ud = 'json' + (+new Date());
window[ud]= function(o){
success && success(new Date(o.datetime));
};
document.getElementsByTagName('head')[0].appendChild((function(){
var s = document.createElement('script');
s.type = 'text/javascript';
s.src = url + '&callback=' + ud;
return s;
})());
}

getTime('GMT', function(time){
// This is where you do whatever you want with the time:
alert(time);
});

from here

关于javascript - 有谁知道一个好的 JSON 时间服务器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9486293/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com