微信小程序获取上周时间
时间: 2023-08-04 09:08:30 浏览: 81
你可以使用 JavaScript 中的 Date 对象来获取上周的时间。具体方法如下:
```javascript
// 获取当前时间
let now = new Date();
// 获取上周一的日期
let lastMonday = new Date(now.getFullYear(), now.getMonth(), now.getDate() - now.getDay() - 6);
// 获取上周日的日期
let lastSunday = new Date(now.getFullYear(), now.getMonth(), now.getDate() - now.getDay());
// 将日期格式化为字符串
let lastWeek = `${lastMonday.getFullYear()}-${lastMonday.getMonth() + 1}-${lastMonday.getDate()} 至 ${lastSunday.getFullYear()}-${lastSunday.getMonth() + 1}-${lastSunday.getDate()}`;
```
上述代码中,获取上周一和上周日的方法是通过当前时间对象的 getFullYear()、getMonth()、getDate() 和 getDay() 方法来计算得出的。最后将日期格式化为字符串,即可得到上周的时间范围。
阅读全文