gpt4 book ai didi

momentjs - Moment.js toISOString 结果不同?

转载 作者:行者123 更新时间:2023-12-05 08:23:34 25 4
gpt4 key购买 nike

代码有问题吗

var mom = moment("23-11-2016 00:00", "DD-MM-YYYY HH:mm");
alert(mom.toISOString());
//result 2016-11-22T17:00:00.000Z

为什么结果不是 2016-11-23T00:00:00.000Z?如何获得 2016-11-23T00:00:00.000Z 结果?

最佳答案

作为doc says :

By default, moment parses and displays in local time.

同时 .toISOString()始终以 UTC 格式返回时间戳:

Note that .toISOString() always returns a timestamp in UTC, even if the moment in question is in local mode. This is done to provide consistency with the specification for native JavaScript Date .toISOString(), as outlined in the ES2015 specification.

您可能与 UTC 相差 -7 小时。

使用format()如果你想在本地时间显示日期。

如果您的输入字符串表示 UTC 时间,则使用 moment.utc(String, String);

关于momentjs - Moment.js toISOString 结果不同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40803599/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com