微信小程序时间戳转年月日时分秒
时间: 2023-08-31 22:08:55 浏览: 220
微信小程序实现时间戳格式转换
要将微信小程序中的时间戳转换为年月日时分秒,你可以使用JavaScript的Date对象来实现。下面是一个示例代码:
```javascript
// 假设时间戳为 1626349620000
const timestamp = 1626349620000;
const date = new Date(timestamp);
const year = date.getFullYear(); // 年份
const month = date.getMonth() + 1; // 月份 (注意要加1,因为月份是从0开始的)
const day = date.getDate(); // 日
const hour = date.getHours(); // 小时
const minute = date.getMinutes(); // 分钟
阅读全文