瞬间无法转换在不同的时区

发布于 01-21 03:28 字数 1726 浏览 2 评论 0原文

我的服务器以 UTC 格式返回日期,我想将它们转换为服务器的时区(即使客户浏览器位于不同的时区!)

这是一个示例,我的服务器位于欧洲/柏林。

var dateAsString = '2022-04-11T22:00:00.000Z'; // 2022-04-12 00:00:00 in Europe/Berlin
var utcDate = moment.utc(dateAsString);
console.log(utcDate.format());
var serverTzDate = utcDate.clone().tz('Europe/Berlin');
console.log(serverTzDate.format());
console.log(serverTzDate.format());

var test = moment.utc('2022-04-11T22:00:00.000Z').tz('Europe/Berlin').format();
console.log(test);
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.2/moment.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment-timezone/0.5.34/moment-timezone-with-data-10-year-range.js"></script>

如果我的浏览器位于欧洲/柏林时区,则输出是正确的:

2022-04-11T22:00:00Z
2022-04-12T00:00:00+02:00
2022-04-12T00:00:00+02:00

但是如果我更改时区(对于我的示例,我选择了太平洋/纽埃),那么结果完全错误,我想时刻正在对时区进行一些操作但如何避免这种浏览器呢?这是输出:

2022-04-11T09:00:00Z
2022-04-11T11:00:00+02:00
2022-04-11T11:00:00+02:00

我需要服务器时区中的日期,而不是浏览器时区中的日期

使用另一个时区:Pacific/Kiritimati (-840)

2022-04-12T10:00:00Z // Wanted 2022-04-11T22:00:00Z (UTC Date as entered)
2022-04-12T12:00:00+02:00 // Wanted 2022-04-12T00:00:00Z (Converted in Europe/Berlin)
2022-04-12T12:00:00+02:00 // Wanted 2022-04-12T00:00:00Z (Converted in Europe/Berlin)
2022-04-12T12:00:00+02:00 // Wanted 2022-04-12T00:00:00Z (Converted in Europe/Berlin)

同样,所有日期都是错误的, moment 似乎无法将我的日期解析为 UTC 日期?即使我使用 utc 方法,它也会应用浏览器的时区偏移量

My server is returning me dates in UTC and I want to convert them to the timezone of the server (even if the customer browser is in a different timezone !)

Here is one example, my server is in Europe/Berlin.

var dateAsString = '2022-04-11T22:00:00.000Z'; // 2022-04-12 00:00:00 in Europe/Berlin
var utcDate = moment.utc(dateAsString);
console.log(utcDate.format());
var serverTzDate = utcDate.clone().tz('Europe/Berlin');
console.log(serverTzDate.format());
console.log(serverTzDate.format());

var test = moment.utc('2022-04-11T22:00:00.000Z').tz('Europe/Berlin').format();
console.log(test);
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.2/moment.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment-timezone/0.5.34/moment-timezone-with-data-10-year-range.js"></script>

If my browser is in the Europe/Berlin timezone the output is correct:

2022-04-11T22:00:00Z
2022-04-12T00:00:00+02:00
2022-04-12T00:00:00+02:00

But if I change my timezone (for my example I took Pacific/Niue), then the result is totally wrong, I suppose moment is doing something with the timezone of the browser but how to avoid this ? Here is the output:

2022-04-11T09:00:00Z
2022-04-11T11:00:00+02:00
2022-04-11T11:00:00+02:00

I need to have the date in the timezone of the server and not in the timezone of the browser

With another timezone: Pacific/Kiritimati (-840)

2022-04-12T10:00:00Z // Wanted 2022-04-11T22:00:00Z (UTC Date as entered)
2022-04-12T12:00:00+02:00 // Wanted 2022-04-12T00:00:00Z (Converted in Europe/Berlin)
2022-04-12T12:00:00+02:00 // Wanted 2022-04-12T00:00:00Z (Converted in Europe/Berlin)
2022-04-12T12:00:00+02:00 // Wanted 2022-04-12T00:00:00Z (Converted in Europe/Berlin)

Again all the dates are wrong, moment seems not able to parse my date as an UTC date ? It apply the timezone offset of the browser even if I'm using the utc method

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尬尬 2025-01-28 03:28:26
moment.utc('2022-04-11T22:00:00.000Z').tz('Europe/Berlin').format()

请检查此文档。 https://momentjs.com/timezone/timezone/docs/docs/docs/docs/#/using timepimezones/ < /a>

以下是我的代码结果,无论您更改了任何时区,结果是'2022-04-12T00:00:00:00+02:00'

moment.utc('2022-04-11T22:00:00.000Z').tz('Europe/Berlin').format()

please check this document. https://momentjs.com/timezone/docs/#/using-timezones/

below is my code result, whatever timezone you changed, the result is '2022-04-12T00:00:00+02:00'
enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文