<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 中使用时区偏移?

        时间:2023-06-14
          <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 中使用时区偏移?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:appendChild 在 IE 中无法正常工作 下一篇:如何在 JavaScript 中获取时区名称?

                  相关文章

                • <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>

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