标签:class rda for 天前 let form 时间格式化 code 时间
获取当前时间
let now = new Date();
获取三天前时间
let threeNow = new Date(now.getTime() - 24*60*60*1000*3);
时间格式化
let nowStr = now.format("yyyy-MM-dd hh:mm:ss");
let threeStr = threeNow.format(`yyyy-MM-dd hh:mm:ss`);
标签:class rda for 天前 let form 时间格式化 code 时间
原文地址:https://www.cnblogs.com/qihang0/p/12557886.html