微信小程序将时间戳转为指定的日期格式
时间: 2023-09-06 12:10:38 浏览: 160
微信小程序实现时间戳格式转换
可以使用小程序自带的时间格式化工具函数 `formatTime()`,将时间戳转为指定的日期格式。
例如,要将时间戳转为 "yyyy-MM-dd hh:mm:ss" 的格式,可以在小程序中使用以下代码:
```javascript
var timestamp = 1598888888; // 假设时间戳为1598888888
var date = new Date(timestamp * 1000); // 将时间戳转为Date对象
var year = date.getFullYear();
var month = date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1;
var day = date.getDate() < 10 ? '0' + date.getDate() : date.getDate();
var hour = date.getHours() < 10 ? '0' + date.getHours() : date.getHours();
var minute = date.getMinutes() < 10 ? '0' + date.getMinutes() : date.getMinutes();
var second = date.getSeconds() < 10 ? '0' + date.getSeconds() : date.getSeconds();
var formattedTime = year + '-' + month + '-' + day + ' ' + hour + ':' + minute + ':' + second;
console.log(formattedTime); // 输出格式化后的时间:"2020-09-01 12:28:08"
```
其中,`timestamp` 表示要转换的时间戳,乘以1000是因为JavaScript中的时间戳是以毫秒为单位的,而小程序中的时间戳是以秒为单位的。`date` 表示将时间戳转换为的Date对象。`year`、`month`、`day`、`hour`、`minute`、`second` 分别表示年、月、日、时、分、秒。最后将它们拼接成指定的格式。
阅读全文