• <tfoot id='OlOYp'></tfoot>

    <legend id='OlOYp'><style id='OlOYp'><dir id='OlOYp'><q id='OlOYp'></q></dir></style></legend>
    • <bdo id='OlOYp'></bdo><ul id='OlOYp'></ul>
    <i id='OlOYp'><tr id='OlOYp'><dt id='OlOYp'><q id='OlOYp'><span id='OlOYp'><b id='OlOYp'><form id='OlOYp'><ins id='OlOYp'></ins><ul id='OlOYp'></ul><sub id='OlOYp'></sub></form><legend id='OlOYp'></legend><bdo id='OlOYp'><pre id='OlOYp'><center id='OlOYp'></center></pre></bdo></b><th id='OlOYp'></th></span></q></dt></tr></i><div id='OlOYp'><tfoot id='OlOYp'></tfoot><dl id='OlOYp'><fieldset id='OlOYp'></fieldset></dl></div>

    <small id='OlOYp'></small><noframes id='OlOYp'>

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

        Javascript Date.toJSON don#39;t get the timezone offset(Javascript Date.toJSON 没有得到时区偏移)
        <i id='b4ddy'><tr id='b4ddy'><dt id='b4ddy'><q id='b4ddy'><span id='b4ddy'><b id='b4ddy'><form id='b4ddy'><ins id='b4ddy'></ins><ul id='b4ddy'></ul><sub id='b4ddy'></sub></form><legend id='b4ddy'></legend><bdo id='b4ddy'><pre id='b4ddy'><center id='b4ddy'></center></pre></bdo></b><th id='b4ddy'></th></span></q></dt></tr></i><div id='b4ddy'><tfoot id='b4ddy'></tfoot><dl id='b4ddy'><fieldset id='b4ddy'></fieldset></dl></div>

            <legend id='b4ddy'><style id='b4ddy'><dir id='b4ddy'><q id='b4ddy'></q></dir></style></legend>
              <tbody id='b4ddy'></tbody>

              <small id='b4ddy'></small><noframes id='b4ddy'>

                • <bdo id='b4ddy'></bdo><ul id='b4ddy'></ul>
                • <tfoot id='b4ddy'></tfoot>
                  本文介绍了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 没有得到时区偏移的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  What are valid deviceNames for Chrome emulation testing with Protractor?(使用 Protractor 进行 Chrome 模拟测试的有效设备名称是什么?)
                  Protractor Check if Element Does Not Exist(量角器检查元素是否不存在)
                  Protractor e2e Tests Login Redirection(Protractor e2e 测试登录重定向)
                  Explain about async/ await in Protractor(解释 Protractor 中的 async/await)
                  Protractor browser.wait doesn#39;t wait(量角器 browser.wait 不等待)
                  How to use Protractor with Angular 2?(如何在 Angular 2 中使用量角器?)
                    <i id='5HIkQ'><tr id='5HIkQ'><dt id='5HIkQ'><q id='5HIkQ'><span id='5HIkQ'><b id='5HIkQ'><form id='5HIkQ'><ins id='5HIkQ'></ins><ul id='5HIkQ'></ul><sub id='5HIkQ'></sub></form><legend id='5HIkQ'></legend><bdo id='5HIkQ'><pre id='5HIkQ'><center id='5HIkQ'></center></pre></bdo></b><th id='5HIkQ'></th></span></q></dt></tr></i><div id='5HIkQ'><tfoot id='5HIkQ'></tfoot><dl id='5HIkQ'><fieldset id='5HIkQ'></fieldset></dl></div>
                    <tfoot id='5HIkQ'></tfoot>

                    <small id='5HIkQ'></small><noframes id='5HIkQ'>

                        <tbody id='5HIkQ'></tbody>
                      <legend id='5HIkQ'><style id='5HIkQ'><dir id='5HIkQ'><q id='5HIkQ'></q></dir></style></legend>
                          • <bdo id='5HIkQ'></bdo><ul id='5HIkQ'></ul>