gpt4 book ai didi

javascript - 如何将时间格式化为 dayjs 对象?

转载 作者:行者123 更新时间:2023-12-04 08:15:10 25 4
gpt4 key购买 nike

我有以下代码


import dayjs from 'dayjs'

const abc = dayjs("09:00:00")
console.log(abc)

控制台中的 abc 是
an invalid date
我怎样才能使它成为一个有效的日期,输入的条件总是格式为“09:00:00”

最佳答案

要使其正常工作,您需要启用 CustomParseFormat插入。然后你可以指定一个格式字符串供 dayjs 使用。例如:

const abc = dayjs("09:00:00", "HH:mm:ss");
console.log(abc);
将导致以下结果:
The result of abc
您可以在 dayjs 文档中了解格式字符串的不同选项: https://day.js.org/docs/en/parse/string-format

关于javascript - 如何将时间格式化为 dayjs 对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65744319/

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