1.获取当前系统日期和时间
在小程序中,新建项目时,就会有一个utils.js文件,就是获取日期和时间的,代码如下:
utils.js:
const formatTime
= date
=>
{
const year
= date
.getFullYear
()
const month
= date
.getMonth
()
+
1
const day
= date
.getDate
()
const hour
= date
.getHours
()
const minute
= date
.getMinutes