如何忽略日期字符串中的GMT偏移
我收到的日期是 2022-04-01T19:49:58-0600
我需要显示 19:49 而不计算 GMT (-0600)
我在 moment.js 中尝试过这个它起作用了:
moment('2022-04-01T19:49:58-0600').utcOffset('2022-04-01T19:49:58-0600').format('h:mm a')
当我得到 '7:49 pm'
这是正确的。
现在我的问题是我在 Dayjs.js 上找不到同样的东西!
如果我使用 dayjs('2022-04-01T19:49:58-0600').utcOffset('2022-04-01T19:49:58-0600').format('h:mm a')< /code> 我收到此错误:'无效日期'
The date I'm receiving is 2022-04-01T19:49:58-0600
and I need to show that 19:49 without calculating the GMT (-0600)
I tried this in moment.js and it worked:
moment('2022-04-01T19:49:58-0600').utcOffset('2022-04-01T19:49:58-0600').format('h:mm a')
as I get '7:49 pm'
which is correct.
Now my problem is I cannot find the same thing on Dayjs.js!
If I use dayjs('2022-04-01T19:49:58-0600').utcOffset('2022-04-01T19:49:58-0600').format('h:mm a')
I get this error: 'Invalid Date'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)