gpt4 book ai didi

javascript - 转换 ISO-8601 时间戳

转载 作者:行者123 更新时间:2023-11-30 17:05:11 26 4
gpt4 key购买 nike

是否有一个 JavaScript 库函数可以转换 IS0-8601时间格式的字符串:

2015-01-27T00:00:00.328Z

转换为具有以下格式的字符串:

'YYYY.MM.DD HH:MI:SS'?

例子:

convert("2015-01-27T00:00:00.328Z") === "2015.01.27 00:00:00.328"

最佳答案

如果您要使用日期而不是简单的转换,您可能需要考虑使用 Moment.js .

moment('2015-01-27T00:00:00.328Z').format('YYYY.MM.DD HH:mm:ss'); //Output depends on your timezone

默认情况下,moment 使用您的本地时间进行显示。如果这不是所需的行为,您可以改用

moment.utc('2015-01-27T00:00:00.328Z').format('YYYY.MM.DD HH:mm:ss'); //"2015.01.27 00:00:00"

或者如果你想包括毫秒:

moment.utc('2015-01-27T00:00:00.328Z').format('YYYY.MM.DD HH:mm:ss.SSS'); //"2015.01.27 00:00:00.328"

关于javascript - 转换 ISO-8601 时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28180665/

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