计算日期相差天数
1. 利用moment()格式化日期,不精确到时分秒,精确到天
const arrTime = moment(1658851200000); // 时间戳 包含时分秒去计算差 const dptTime = moment(1661011200000); let day = dptTime.startOf('day').diff(arrTime.startOf('day'), 'days');
console.log(day);
2. 精确到时分秒
// 计算天数 let mm = 1661011200000- 1658851200000; // 全部转化成毫秒 let day = Math.round(mm/ (1000 * 3600 * 24)) ; console.log(day);