Changing the Utc Date to Local Date using moment.js(使用 moment.js 将 Utc 日期更改为本地日期)
问题描述
我正在使用带有时区的 moment.js 在 web 应用程序中进行日期操作.我将所有日期存储在 UTC 中,并将它们作为 UTC 返回给 UI.我有用户的时区.我想将 UTC 时间转换为本地用户时区.
i'm using moment.js with timezones for date manipulation in a webapp. i'm storing all the dates in UTC and return them to UI as UTC. I'm having the timezone of the user. i want to convert the UTC time to the local Users time zone.
var timezone = "America/New_York";
var utcDate = "2013-10-16T10:31:59.0537721Z";
var localDate = moment(utcDate).utc().tz(timezone).format()
当我尝试这样做时,我的时间不对.不知道如何让它与时刻一起工作
When i try to do this i'm getting wrong time. not sure how to get this working with moment
推荐答案
你可以试试:
moment.utc(utcDate).tz(timezone).format()
但这应该没关系.它们都应该产生:"2013-10-16T06:31:59-04:00"
.
But it shouldn't matter. They should both produce: "2013-10-16T06:31:59-04:00"
.
它适用于我,在 Chrome 30 上运行,所以它可能与浏览器相关.
It works for me, running on Chrome 30, so it's probably browser related.
如果您在 IE8 上运行 Moment.js 2.3.1 或更早版本,那么这是问题 #1175,在 2.4.0 中修复.更新到最新版本应该可以解决问题.
If you're running Moment.js 2.3.1 or earlier on IE8, then it's a side effect of issue #1175, which was fixed in 2.4.0. Updating to the latest version should solve the problem.
这篇关于使用 moment.js 将 Utc 日期更改为本地日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 moment.js 将 Utc 日期更改为本地日期


基础教程推荐
- 如何在特定日期之前获取消息? 2022-01-01
- 每次设置弹出窗口的焦点 2022-01-01
- WatchKit 支持 html 吗?有没有像 UIWebview 这样的控制器? 2022-01-01
- jQuery File Upload - 如何识别所有文件何时上传 2022-01-01
- 如何使用sencha Touch2在单页中显示列表和其他标签 2022-01-01
- 什么是不使用 jQuery 的经验技术原因? 2022-01-01
- Javascript 在多个元素上单击事件侦听器并获取目标 2022-01-01
- 为什么我在 Vue.js 中得到 ERR_CONNECTION_TIMED_OUT? 2022-01-01
- Node.js 有没有好的索引/搜索引擎? 2022-01-01
- 如何使用 CSS 显示和隐藏 div? 2022-01-01