(1)setDate:根据本地时间来指定一个日期对象的天数
(2)getDate:返回一个指定的日期对象为一个月中的哪一日
(3)getMonth返回一个 0 到 11 的整数值:0 代表一月份,1 代表二月份,2 代表三月份,依次类推。
(4)getDate() 返回一个 1 到 31 的整数值。
const initDate = (): string[] => {
let dateList: any = [];
let startDate = new Date();
let endDate = new Date();
console.log(startDate);
// setDate:根据本地时间来指定一个日期对象的天数
// getDate:返回一个指定的日期对象为一个月中的哪一日
endDate.setDate(startDate.getDate() + 30);
startDate.setDate(startDate.getDate() + 1);
while (endDate.getTime() - startDate.getTime() >= 0) {
// getMonth返回一个 0 到 11 的整数值:0 代表一月份,1 代表二月份,2 代表三月份,依次类推。
let mouth = (startDate.getMonth() + 1).toString().length === 1 ? "0" + (startDate.getMonth() + 1).toString() : startDate.getMonth() + 1
// getDate() 返回一个 1 到 31 的整数值。
let day = startDate.getDate().toString().length === 1 ? "0" + startDate.getDate() : startDate.getDate()
dateList.push(mouth + "/" + day)
startDate.setDate(startDate.getDate() + 1)
}
return dateList;
}