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

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

  2. <legend id='bK91H'><style id='bK91H'><dir id='bK91H'><q id='bK91H'></q></dir></style></legend>

      <bdo id='bK91H'></bdo><ul id='bK91H'></ul>
    1. 如何在 Nodejs 中使用时区偏移?

      时间:2023-10-11

      1. <small id='cCUE3'></small><noframes id='cCUE3'>

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

                  <tbody id='cCUE3'></tbody>
                <legend id='cCUE3'><style id='cCUE3'><dir id='cCUE3'><q id='cCUE3'></q></dir></style></legend>
                本文介绍了如何在 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 中使用时区偏移?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:在 Angular 2/Typescript 中使用 IScroll 下一篇:如何在 JavaScript 中获取时区名称?

                相关文章

                最新文章

                • <bdo id='lJq6u'></bdo><ul id='lJq6u'></ul>
              • <small id='lJq6u'></small><noframes id='lJq6u'>

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