如何使用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);