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.
我使用 date-fns 库来格式化我的日期。
我获取今天日期的代码是let today = format(new Date(), 'YYYY-MM-DD');
let today = format(new Date(), 'YYYY-MM-DD');
但是此代码将日期返回为2018-08-240
2018-08-240
为什么240??
240
谁能帮我得到正确的日期???提前致谢。
这个错误现在应该已经修复了。
无论如何date-fns V2+,显示日期的新格式是:
date-fns V2+
const today = format(new Date(), 'yyyy-MM-dd')