getDateList(){
let dateList = []
let startDate = new Date();
let endDate = new Date();
// setDate:根据本地时间来指定一个日期对象的天数
// getDate:返回一个指定的日期对象为一个月中的哪一日
endDate.setDate(startDate.getDate() + 7);
// 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)
}
this.dateList = dateList
},
获取当前日期往后7天的日期列表
最新推荐文章于 2024-01-16 15:17:22 发布
该代码段创建了一个函数getDateList,它基于当前日期生成一个包含未来7天日期的列表。利用JavaScript的Date对象,它设置起始和结束日期,然后在循环中增加日期并格式化输出。结果存储在dateList数组中。
摘要由CSDN通过智能技术生成