uniapp 获取当前时间
时间: 2023-07-17 16:03:36 浏览: 176
获取当前时间
要在UniApp中获取当前时间,你可以使用JavaScript的Date对象。以下是一个示例代码来获取当前时间:
```
// 获取当前时间
var now = new Date();
// 获取年份
var year = now.getFullYear();
// 获取月份(注意月份是从0开始计数的,所以要加1)
var month = now.getMonth() + 1;
// 获取日期
var date = now.getDate();
// 获取小时
var hours = now.getHours();
// 获取分钟
var minutes = now.getMinutes();
// 获取秒钟
var seconds = now.getSeconds();
// 输出当前时间
console.log(year + '-' + month + '-' + date + ' ' + hours + ':' + minutes + ':' + seconds);
```
你可以将上述代码放在你的UniApp页面的相应位置,然后通过console.log()函数输出当前时间。你也可以将时间保存在一个变量中,以便在页面中进行其他操作。
阅读全文