gpt4 book ai didi

javascript - 在 moment.js 中转换简单的日期/时间字符串不检测 AM/PM

转载 作者:行者123 更新时间:2023-11-30 08:47:01 25 4
gpt4 key购买 nike

我正在尝试使用 moment.js 将简单字符串转换为 unix 时间戳

moment('2014-01-14 07:25 PM').unix();
moment('2014-01-14 07:25 AM').unix();

问题是我在该字符串中使用 AM 或 PM 得到了相同的结果。

1389684300

什么给了?

最佳答案

docs更不用说您指定的格式一定会被正确识别。它说

Warning: Browser support for this is inconsistent. Because there is no specification on which formats should be supported, what works in some browsers will not work in other browsers.`

您可能应该在第二个参数中明确指定一种格式。

这应该有效(JSFiddle):

moment('2014-01-14 07:25 PM', 'YYYY-MM-DD hh:mm A').unix();

关于javascript - 在 moment.js 中转换简单的日期/时间字符串不检测 AM/PM,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21104045/

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