使用luxon格式iso 8601到日期(YYYY-MM-DD)



如何使用Luxon转换日期数据

api数据2021-09-05T01:39:33Z

数据转换结果我要

2021-09-05

谢谢你的帮助。

let format = `YYYY-MM-DD`;
let now = new Date();
let result = `${now.getFullYear()}-${(now.getMonth() < 10) ? "0" + now.getMonth() : now.getMonth()}-${(now.getDate() < 10) ? "0" + now.getDate() : now.getDate() }`;
console.log(result);

相关内容

  • 没有找到相关文章

最新更新