时刻处理日光节省时间
我需要用 momentjs 管理 dst 。 在 fe 我收到来自 be 的日期时间(如 2022-04-05T10:59:13.640683),我想确定我是否在 dst 中显示正确的日期时间。 如果我采用夏令时,我想增加 1 小时。
我正在这样做:
const receiveDate = moment(dateTimeFormBe).format()
moment(dateTimeFormBe).isDST() ? receiveDate.add(1,'hour') :receedDate
它有效,但我想概括它。它只有在我在意大利时才有效,我希望它在任何地方都有效。 有人可以帮助我吗?
I need to manage dst with momentjs.
At fe I receive datetime (like 2022-04-05T10:59:13.640683) from be, I want to determine if I'm in dst to display the right dateTime.
If I'm in daylight savings time I want to add 1h.
I'm doing this with:
const receivedDate = moment(dateTimeFormBe).format()
moment(dateTimeFormBe).isDST() ? receivedDate.add(1,'hour') : receivedDate
It works but I want to generalize it. It only works if I'm in Italy, I want that it works everywhere.
Someone could help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如评论中提到的,您应该使用 momentjs timezone 来管理您的时区,其中 只要您使用
.format()
方法As mentioned in the comments you should use momentjs timezone to manage your timezones, which does have DST baked in as long as you use the
.format()
method这对我来说很好。它通过添加/减去UTC偏移时间在迎合DST时将UTC时间转换为本地时间
This works perfectly fine for me. It converts utc time to local time by adding/subtracting utc offset time while catering to DST