Javascript Date.toJSON 没有得到时区偏移

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

本文介绍了Javascript Date.toJSON 没有得到时区偏移的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

问题是我使用的是这样的代码:

Well the problem is that I was using code like this:

new Date().toJSON().slice(0, 10)

将我的日期作为 YYYY-MM-DD 字符串,然后我在一些 mysql 查询和一些条件语句中使用它作为参数.在一天结束时,我没有得到正确的日期,因为它仍然在前一天(我的时区偏移量是 +2/3 小时).

to get my date as YYYY-MM-DD string, then I use it like parameter in some mysql queries and in some condition statements. In the end of the day I wasn't getting the right date since it was still in the previous day (my timezone offset is +2/3 hours).

我没有注意到 toJSON 方法没有考虑到您的时区偏移,所以我最终得到了这个 hacky 解决方案:

I haven't noticed that the toJSON method does not take into account your timezone offset, so I've ended up with this hacky solution:

var today = new Date();
today.setHours( today.getHours()+(today.getTimezoneOffset()/-60) );
console.log(today.toJSON().slice(0, 10));

有没有更优雅的解决方案?

Is there a more elegant solution?

  • 这里是测试代码:http://jsfiddle.net/simo/qwhYw/
  • JavaScript toJSON 方法
  • JavaScript 日期对象

推荐答案

ECMAScript 中的日期对象在内部是 UTC.时区偏移量用于当地时间.

Date objects in ECMAScript are internally UTC. The timezone offset is used for local times.

Date.prototype.toJSON 的规范说它使用 Date.prototype.toISOString,表示时区始终为 UTC".您的解决方案正在做的是将日期对象的 UTC 时间值偏移时区偏移量.

The specification for Date.prototype.toJSON says that it uses Date.prototype.toISOString, which states that "the timezone is always UTC". What your solution is doing is offsetting the UTC time value of the date object by the timezone offset.

考虑将您自己的方法添加到 Date.prototype,例如

Consider adding your own method to Date.prototype, e.g.

Date.prototype.toJSONLocal = function() {
  function addZ(n) {
    return (n<10? '0' : '') + n;
  }
  return this.getFullYear() + '-' + 
         addZ(this.getMonth() + 1) + '-' + 
         addZ(this.getDate());
} 

编辑

如果你想挤出额外的性能,以下应该更快:

Edit

If you want to squeeze extra performance, the following should be faster:

Date.prototype.toJSONLocal = (function() {
    function addZ(n) {
        return (n<10? '0' : '') + n;
    }
    return function() {
      return this.getFullYear() + '-' +
             addZ(this.getMonth() + 1) + '-' +
             addZ(this.getDate());
    };
}())

但这有点过早优化的味道,所以除非你在很短的时间内调用它数千次,否则我不会打扰.

But that smacks of premature optimisation, so unless you are calling it thousands of times in a very short period, I wouldn't bother.

这篇关于Javascript Date.toJSON 没有得到时区偏移的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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