<legend id='7NaCK'><style id='7NaCK'><dir id='7NaCK'><q id='7NaCK'></q></dir></style></legend>

    <small id='7NaCK'></small><noframes id='7NaCK'>

    <i id='7NaCK'><tr id='7NaCK'><dt id='7NaCK'><q id='7NaCK'><span id='7NaCK'><b id='7NaCK'><form id='7NaCK'><ins id='7NaCK'></ins><ul id='7NaCK'></ul><sub id='7NaCK'></sub></form><legend id='7NaCK'></legend><bdo id='7NaCK'><pre id='7NaCK'><center id='7NaCK'></center></pre></bdo></b><th id='7NaCK'></th></span></q></dt></tr></i><div id='7NaCK'><tfoot id='7NaCK'></tfoot><dl id='7NaCK'><fieldset id='7NaCK'></fieldset></dl></div>
      • <bdo id='7NaCK'></bdo><ul id='7NaCK'></ul>
      1. <tfoot id='7NaCK'></tfoot>

      2. 如何在 Nodejs 中使用时区偏移?

        How to use timezone offset in Nodejs?(如何在 Nodejs 中使用时区偏移?)
          <tbody id='BmzwN'></tbody>
        <legend id='BmzwN'><style id='BmzwN'><dir id='BmzwN'><q id='BmzwN'></q></dir></style></legend>

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

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

                  本文介绍了如何在 Nodejs 中使用时区偏移?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我需要下一个流程:

                  var a = new Date(1337324400000, 'Europe/Amsterdam'); //+2h
                  console.log(a); // for example 12:00 Mon ...
                  a.setTimeZone('Europe/Kiev'); //+3h
                  console.log(a); // 13:00 Mon ...
                  

                  nodejs utils api中是否有这种可能性?

                  Is there such possibility in nodejs utils api ?

                  推荐答案

                  可以使用node-time,如下:

                  var time = require('time');
                  
                  var a = new time.Date(1337324400000);
                  
                  a.setTimezone('Europe/Amsterdam');
                  console.log(a.toString()); // Fri May 18 2012 09:00:00 GMT+0200 (CEST)
                  a.setTimezone('Europe/Kiev');
                  console.log(a.toString()); // Fri May 18 2012 10:00:00 GMT+0300 (EEST)
                  

                  这篇关于如何在 Nodejs 中使用时区偏移?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  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 中使用量角器?)
                • <small id='LKBWV'></small><noframes id='LKBWV'>

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

                            <tbody id='LKBWV'></tbody>

                          <legend id='LKBWV'><style id='LKBWV'><dir id='LKBWV'><q id='LKBWV'></q></dir></style></legend>