当传递给“新日期"时,javascript 中 yyyy-mm-dd 和 yyyy/mm/dd 的结果不同

2023-04-20前端开发问题
6

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

问题描述

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

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)

在第一个小时,分钟,秒全为零,而在第二个小时,分钟默认设置为时区小时,分钟,即 5:30

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

推荐答案

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

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

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

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)

您的第一个日期格式 2015/03/31 是 假设为 2015 年 3 月 31 日凌晨 12 点您当前的时区.
您的第二个日期格式 2015-03-31 被视为 ISO-8601,并假定为 2015 年 3 月 31 日凌晨 12 点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:

给定日期字符串2014 年 3 月 7 日",parse() 假定为本地时区,但给定 ISO 格式,例如2014-03-07",它将假定时区为 UTC.因此,使用这些字符串生成的 Date 对象将代表不同的时间点,除非系统设置为 UTC 的本地时区.这意味着看起来相同的两个日期字符串可能会产生两个不同的值,具体取决于要转换的字符串的格式(此行为在 ECMAScript ed 6 中进行了更改,因此两者都将被视为本地).

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 的结果不同的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

Fatal error: Call to a member function fetch_assoc() on a no
业务场景:使用update语句去更新数据库字段。 原因:update接收值不正确。原来代码: $query = "UPDATE student SET date = now() WHERE id = $id";$result = $mysqli-query($query2) or die($mysqli-error); // 问题出现了在这句 $data = $result-fetch_ass...
2024-12-13 前端开发问题
136

layui实现laydate日历控件控制之前日期不可选择
具体实现代码如下: laydate.render({ elem: '#start_time', min:0, //,type: 'date' //默认,可不填}); 只要加一个min参数,就可以控制了。0表示之前的日期不可...
2024-11-29 前端开发问题
133

js删除数组中指定元素的5种方法
在JavaScript中,我们有多种方法可以删除数组中的指定元素。以下给出了5种常见的方法并提供了相应的代码示例: 1.使用splice()方法: let array = [0, 1, 2, 3, 4, 5];let index = array.indexOf(2);if (index -1) { array.splice(index, 1);}// array = [0,...
2024-11-22 前端开发问题
182

layui laydate日期时间范围,时间默认设定为23:59:59
在Layui中,如果你想设置日期时间选择器(datetime)的默认结束时间为当天的23:59:59,你可以使用如下代码: laydate.render({ elem: '#test10' ,type: 'datetime' ,range: true ,max: '{:date("Y-m-d 23:59:59")}' ,ready: function(date){ $(".layui-laydat...
2024-10-24 前端开发问题
279

JavaScript小数运算出现多位的解决办法
在开发JS过程中,会经常遇到两个小数相运算的情况,但是运算结果却与预期不同,调试一下发现计算结果竟然有那么长一串尾巴。如下图所示: 产生原因: JavaScript对小数运算会先转成二进制,运算完毕再转回十进制,过程中会有丢失,不过不是所有的小数间运算会...
2024-10-18 前端开发问题
301

JavaScript(js)文件字符串中丢失"\"斜线的解决方法
问题描述: 在javascript中引用js代码,然后导致反斜杠丢失,发现字符串中的所有\信息丢失。比如在js中引用input type=text onkeyup=value=value.replace(/[^\d]/g,) ,结果导致正则表达式中的\丢失。 问题原因: 该字符串含有\,javascript对字符串进行了转...
2024-10-17 前端开发问题
437