Json utc到当地时间

时间:2017-02-21 20:05:04

标签: javascript jquery

我发现这个网址api-sunrise-sun sunset 以UTC格式提供了日期时间,但是无论我的网页在何处打开,我都希望即时转换为本地时间!我将如何实现这一目标?

1 个答案:

答案 0 :(得分:0)

我想你是在显示成功获得json之后的时间。试试这个:

//today's date, or whatever
var t_date = new Date().toLocaleDateString();

//time from json. example: 10:04:34 PM
var t_from_json = response["results"]["sunrise"]

var utc_date = new Date( t_date + " " + t_from_json + " UTC")
//Date 2017-02-21T22:04:34.000Z

//two options:

utc_date.toString();
//"Tue Feb 21 2017 19:04:34 GMT-0300 (CLST)"

var offset = new Date().getTimezoneOffset();
utc_date.setMinutes(utc_date.getMinutes() - offset);
//Date 2017-02-21T19:04:34.000Z