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

      1. <tfoot id='ecTHQ'></tfoot>
      2. <small id='ecTHQ'></small><noframes id='ecTHQ'>

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

        使用 JavaScript 将带有时区的日期字符串转换为本

        时间:2023-10-11
          <bdo id='rKmUK'></bdo><ul id='rKmUK'></ul>

              <tbody id='rKmUK'></tbody>

            1. <tfoot id='rKmUK'></tfoot>
            2. <small id='rKmUK'></small><noframes id='rKmUK'>

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

                  <legend id='rKmUK'><style id='rKmUK'><dir id='rKmUK'><q id='rKmUK'></q></dir></style></legend>
                • 本文介绍了使用 JavaScript 将带有时区的日期字符串转换为本地时间的日期对象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我的日期字符串格式如下:yyyy-MM-ddTHH:mm:ss-0Z00

                  The format of my date string looks like this: yyyy-MM-ddTHH:mm:ss-0Z00

                  示例 1:2010-03-05T07:03:51-0800

                  示例 2:2010-07-01T20:23:00-0700

                  我需要使用这些日期字符串创建一个日期对象.new Date() 不适用于此字符串.请帮我将这些日期字符串转换为具有本地时区的日期对象.

                  I need to create a date object using these date strings. new Date() does not work on this string. Please help me convert these date strings into a date objects with the local timezone.

                  谢谢!

                  我在 Pentaho Data Integration 4.3.0 中使用它.

                  I am using this in Pentaho Data Integration 4.3.0.

                  推荐答案

                  可以使用Moment.js等库这样做.

                  查看字符串+格式解析.

                  See the String + Format parsing.

                  http://momentjs.com/docs/#/parsing/string-format/

                  以下应该解析您提供的日期,但您可能需要根据需要对其进行修改.

                  The following should parse your date you provided, but you may need to modify it for your needs.

                  var oldDate = "2010-03-05T07:03:51-0800";
                  
                  var dateObj = moment(oldDate, "YYY-MM-DDTHH:mm:ssZ").toDate();
                  

                  或者,请参阅 Moment 的字符串解析器,它看起来就像您提供的格式,除了时间的秒数和时区之间的空格.

                  Alternatively, see Moment's String parser, which looks like it is in the format you provided, with the exception of a space between the seconds of the time and the time zone.

                  http://momentjs.com/docs/#/parsing/string/

                  第二种方法是 Date.js,另一个似乎可以很好地解析格式的库.http://www.datejs.com

                  A second way of doing this is Date.js, another library that seems to parse the format just fine. http://www.datejs.com

                  这篇关于使用 JavaScript 将带有时区的日期字符串转换为本地时间的日期对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何将 Moment.js 日期转换为用户本地时区? 下一篇:如何使用 moment.js 在特定时区创建时间

                  相关文章

                  最新文章

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

                    <tfoot id='piOLx'></tfoot>

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