赞
踩
可以使用以下方法获取当前时间的上个月的时间:
const currentDate = new Date();const lastMonth = new Date(currentDate.getFullYear(), currentDate.getMonth() - 1, currentDate.getDate());