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

      • <bdo id='w8piu'></bdo><ul id='w8piu'></ul>
      <legend id='w8piu'><style id='w8piu'><dir id='w8piu'><q id='w8piu'></q></dir></style></legend>
    1. <small id='w8piu'></small><noframes id='w8piu'>

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

        以小时为单位获取时区差异

        时间:2023-06-14

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

        • <bdo id='WKUBi'></bdo><ul id='WKUBi'></ul>

              <tfoot id='WKUBi'></tfoot>

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

                    <tbody id='WKUBi'></tbody>
                  本文介绍了以小时为单位获取时区差异的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我想通过 Node.js moment 模块获取纽约和香港之间的时区差异.我已经做了一些前期工作.

                  I would like to get the timezone difference between New York and Hong Kong with Node.js moment module. I have done some preliminary work.

                  var NewYork_time_hr = moment().tz("America/New_York").format('HH'); 
                  var HongKong_time_hr = moment().tz("Asia/Hong_Kong").format('HH');
                  

                  然后我可以继续编写一个函数来计算两个时区之间的时间差(以小时为单位).我希望有一个更简单的方法.

                  I can then proceed to write a function to calculate the difference between the 2 timezones in hours. I was hoping for a simpler method.

                  有没有更优雅、更简单的方式来使用矩库?

                  Is there a more elegant and simpler way to do it with moment library?

                  推荐答案

                  不确定更简单",但更正确(因为并非所有时区都相隔一小时):

                  Not sure about "simpler", but more correct (since not all timezones are a full hour from each other):

                  // get the current time so we know which offset to take (DST is such bullkitten)
                  var now = moment.utc();
                  // get the zone offsets for this time, in minutes
                  var NewYork_tz_offset = moment.tz.zone("America/New_York").offset(now); 
                  var HongKong_tz_offset = moment.tz.zone("Asia/Hong_Kong").offset(now);
                  // calculate the difference in hours
                  console.log((NewYork_tz_offset - HongKong_tz_offset) / 60);

                  <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.6/moment.min.js"></script>
                  <script src="https://cdnjs.cloudflare.com/ajax/libs/moment-timezone/0.4.1/moment-timezone-with-data-2010-2020.min.js"></script>

                  这篇关于以小时为单位获取时区差异的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:在Javascript中获取时区的UTC偏移量 下一篇:格式化谷歌图表日期时间轴标签的时区

                  相关文章

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

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