如何停止将UTC日期时间对象转换为本地日期时间?

时间:2019-01-14 12:51:03

标签: javascript date datetime momentjs datetime-format

我想要一个UTC时间的日期时间对象,而不是UTC日期时间字符串。

以下代码帮助我将UTC时间作为字符串获取:

moment.parseZone(new Date()).utc().format()

上面的代码输出为:

"2019-01-14T12:43:23Z"

上面是一个字符串,我不需要。 我想要的是一个日期时间对象。 这是将日期时间字符串转换为日期时间对象的方式:

new Date(moment.parseZone(new Date()).utc().format())

不幸的是,上面的代码将输出转换为本地时间AGAIN,其示例如下所示:

Mon Jan 14 2019 18:10:54 GMT+0530 (India Standard Time)

我们如何阻止UTC日期时间对象转换为本地日期时间?

Edit-01:如何使用UTC时间中的日期时间对象执行计算?

Edit-02:功能说明:

有些人的时区不同。我们知道UTC时差。我想建立一个每个人在当地时间的时间表。

示例:我的时区为+5:30 UTC(我的时间当前为01/14/2019 9:00 pm),来自旧金山的人的时区为-8:00 UTC(他/她的时间当前是01/14/2019 7:30 am)。

目前,我要做的是在UTC时间上加上时差(-8:00 UTC)以找到旧金山人的本地时间。这不起作用,因为当我将UTC日期时间字符串转换为日期对象时,它将转换为本地时间。

1 个答案:

答案 0 :(得分:2)

Javascript dates have no timezone! 是您用于序列化的“静态”方法,偷偷地应用了一种。您担心的输出是控制台中使用的Date.toString()的标准输出。基础日期可能很好(您只是从零开始创建的,因此不会出现反序列化问题)。您只需在序列化时指定UTC方法。尝试Date.toISOString()Date.toLocaleDateString({},{timeZone:'UTC'})

功能说明后进行编辑...

好的,这是您可以做的几件事。肯尼迪在1963年11月22日中部标准时间下午12:30被暗杀。

// create a date object to represent this moment...
const byeByeKennedy = new Date("1963-11-22T12:30:00-06:00");

// this is a date object, representing a moment. We used a
// timezone for it's creation, but now it has no notion of timezone.

// if you want to know what time it was IN THE TIMEZONE OF THE USER, 
// just do toString(), or leave timezone blank. Formatting in the 
// timezone of the user is always the default in javascript.
// This does not mean that the Date intrinsically has a timezone though!
console.log('My local time when kennedy was killed... ' 
+ byeByeKennedy.toString());

// If we want to format this date with it's "original" timezone, we need
// to store the timezone separately, then use it again to serialize...
console.log('Local time in Dallas when Kennedy was killed... ' 
+ byeByeKennedy.toLocaleString({},{timeZone:"America/Chicago"}))

// If you, sitting in India, need to know what time it was for 
// your user in San Francisco when kennedy
// was killed, you need to supply the timezone of San Francisco...
console.log('Local time in San Francisco when Kennedy was killed... ' 
+ byeByeKennedy.toLocaleString({},{timeZone:"America/Los_Angeles"}))

// If you want to serialize this date, for example to send it to a server, use ISO...
console.log('Use ISO for serializing/sending... ' 
+ byeByeKennedy.toISOString());

// OR IF YOU JUST WANT TO KNOW WHAT TIME IT IS IN SAN FRANCISCO...
console.log('SAN FRANCISCO TIME NOW... '
+ new Date().toLocaleString({},{timeZone:"America/Los_Angeles"}))

如果绝对必须,可以将时区偏移量直接添加到日期,然后使用UTC对其进行格式化,但这是一个糟糕的主意,因为您将需要管理夏时制和其他细微之处。请不要这样做。最好在创建时就清楚时区,然后再格式化就好。