停止 javascript Date 函数更改时区偏移量

2023-06-14前端开发问题
2

本文介绍了停止 javascript Date 函数更改时区偏移量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

所以我有需要从字符串转换为日期对象的 iso 日期时间.如何保持日期不将其转换为本地浏览器时区.

So I have iso date time that need to be converted from a string to date object. How do I keep date from converting it to local browser timezone.

new Date('2013-07-18T17:00:00-05:00')
Thu Jul 18 2013 18:00:00 GMT-0400 (EDT)

我想得到

2013 年 7 月 18 日星期四 17:00:00 GMT-0500 (XX)

Thu Jul 18 2013 17:00:00 GMT-0500 (XX)

推荐答案

虽然 MomentJS 是一个很棒的库,但它可能无法为每个用例提供解决方案.例如,我的服务器以 UTC 格式提供日期,并且当日期的时间部分未保存在数据库中(因为它无关紧要)时,客户端会收到一个默认时间全为零的字符串 - 午夜 - 并以+0000 的偏移量.然后浏览器会根据我的本地时区自动调整,并将时间向后拉几个小时,结果是前一天.

While MomentJS is a great library, it may not provide a solution for every use case. For example, my server provides dates in UTC, and when the time portion of the date is not saved in the db (because it's irrelevant), the client receives a string that has a default time of all zeros - midnight - and ends with an offset of +0000. The browser then automatically adjusts for my local time zone and pulls the time back by a few hours, resulting in the previous day.

MomentJs 也是如此.

This is true with MomentJs as well.

一种解决方案是切掉字符串的时间部分,然后按照其他答案中的说明使用 MomentJS.

One solution is to slice off the time portion of the string, and then use MomentJS as described in the other answers.

但是如果 MomentJS 不是一个可行的选择会发生什么,即我已经有很多地方使用 JS Date 并且不想更新这么多代码行?问题是如何首先阻止浏览器根据本地时区转换日期.答案是,当日期是 ISO 格式时,你不能.

But what happens if MomentJS is not a viable option, i.e. I already have many places that use a JS Date and don't want to update so many lines of code? The question is how to stop the browser from converting dates based on local time zone in the first place. And the answer is, when the date is in ISO format, you cannot.

然而,没有规定你传递给 JavaScript 的 Date 构造函数的字符串必须是 ISO 格式.如果您只是将分隔年、月、日的 - 替换为 /,您的浏览器将执行任何转换.

However, there is no rule that says the string you pass to JavaScript's Date constructor must be in ISO format. If you simply replace the - that separates the year, month, and day with a /, your browser will not perform any conversion.

在我的例子中,我只是更改了 Dates 服务器端的格式,问题就解决了,而无需使用 MomentJS 更新所有客户端 JS 日期.

In my case, I simply changed the format of the Dates server-side, and the problem was solved without having to update all the client-side JS dates with MomentJS.

请注意,在解析字符串以创建 Date 实例时,JavaScript 的 Date 类的 MDN 文档会警告不可预测的浏览器行为.

Note that the MDN docs for JavaScript's Date class warn about unpredictable browser-behavior when parsing a string to create a Date instance.

这篇关于停止 javascript Date 函数更改时区偏移量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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