当转到“新日期”时,javascript中的yyyy-mm-dd和yyyy / mm / dd的结果不同 [英] different result for yyyy-mm-dd and yyyy/mm/dd in javascript when passed to "new Date"

查看:160
本文介绍了当转到“新日期”时,javascript中的yyyy-mm-dd和yyyy / mm / dd的结果不同的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在nodejs repl下执行下面的语句,我在同一日期获得两个不同的结果

  var dateStr1 =2015 / 03/31; 
var dateStr2 =2015-03-31;
var date1 = new Date(dateStr1); //给出Tue Mar 31 2015 00:00:00 GMT + 0530(IST)
var date2 = new Date(dateStr2); //给出3月31日2015 05:30:00 GMT + 0530(IST)

在第一个1小时,分钟,秒都是0,而在默认小时的第二个,min被设置为时区小时,min是5:30

解决方案

它归结为如何 Date.parse()处理 ISO-8601日期格式


日期时间字符串可能采用ISO 8601格式。例如,可以传递和解析2011-10-10(仅限日期)或2011-10-10T14:48:00(日期和时间)。 UTC时区用于解释不包含时区信息的ISO 8601格式的参数(请注意,ECMAScript ed 6草案指定没有时区的日期时间字符串将被视为本地而不是UTC)


您的第一个日期格式 2015/03/31 关于将于2015年3月31日上午12点在您的当前时区。

您的第二个日期格式 2015-03-31 被视为ISO-8601,假定为3月31日,2015年12月20日星期日UTC时区。



链接文档中的假定时区的差异标题有更详细的说明:给出一个2014年3月7日的日期字符串,parse()假定本地时区,但是给出了ISO格式,例如2014-03-07它会承担一个时间UTC的区域。因此,使用这些字符串生成的Date对象将代表不同的时刻,除非系统设置为UTC的本地时区。这意味着出现等效的两个日期字符串可能会导致两个不同的值,具体取决于正在转换的字符串的格式(ECMAScript ed 6中的行为已更改,以便两者都被视为本地)。



I was executing below statement under nodejs repl and i was getting two different result for same date

var dateStr1 = "2015/03/31";
var dateStr2 = "2015-03-31";
var date1 = new Date(dateStr1);//gives Tue Mar 31 2015 00:00:00 GMT+0530 (IST)
var date2 = new Date(dateStr2);//gives Tue Mar 31 2015 05:30:00 GMT+0530 (IST)

In the 1st one hour,min,seconds are all zeros while in the 2nd one by default hour,min is getting set to as a timezone hour,min which is 5:30

解决方案

It boils down to how Date.parse() handles the ISO-8601 date format.

The date time string may be in ISO 8601 format. For example, "2011-10-10" (just date) or "2011-10-10T14:48:00" (date and time) can be passed and parsed. The UTC time zone is used to interpret arguments in ISO 8601 format that do not contain time zone information (note that ECMAScript ed 6 draft specifies that date time strings without a time zone are to be treated as local, not UTC)

Your first date format 2015/03/31 is assumed to be March 31st, 2015 at 12am in your current time zone.
Your second date format 2015-03-31 is seen as ISO-8601 and is assumed to be March 31st, 2015 at 12am UTC time zone.

The "Differences in assumed time zone" heading from the linked documentation goes into a bit more detail:

Given a date string of "March 7, 2014", parse() assumes a local time zone, but given an ISO format such as "2014-03-07" it will assume a time zone of UTC. Therefore Date objects produced using those strings will represent different moments in time unless the system is set with a local time zone of UTC. This means that two date strings that appear equivalent may result in two different values depending on the format of the string that is being converted (this behavior is changed in ECMAScript ed 6 so that both will be treated as local).

这篇关于当转到“新日期”时,javascript中的yyyy-mm-dd和yyyy / mm / dd的结果不同的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆