uniapp获取当前日期年月日
时间: 2023-11-12 18:07:32 浏览: 194
获取当前月日期
可以使用以下代码获取当前日期的年月日:
```javascript
let now = new Date();
let year = now.getFullYear();
let month = now.getMonth() + 1;
let date = now.getDate();
let currentDate = year + '-' + month + '-' + date;
```
阅读全文