Use JavaScript to convert a date string with timezone to a date object in local time(使用 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 将带有时区的日期字符串转换为本地时间的日期对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 JavaScript 将带有时区的日期字符串转换为本地时间的日期对象


基础教程推荐
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 直接将值设置为滑块 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01