Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的旧代码使用 momentjs,如下所示:
moment(createdAt, 'YYYY-MM-DD HH:mm:ss').toISOString()
可以重现相同结果的 date-fns 上的等效方法是什么?
尝试这个,
new Date(createAt).toISOString()
date-fns 有一个功能:formatISO()所以,如果你想继续使用 date-fns,你可以写:
formatISO()
formatISO(new Date())