前端标准时间格式转换可以使用JavaScript中的Date对象和相关方法来实现。以下是一些常见的时间格式转换:
- 时间戳转日期时间:可以使用Date对象的构造函数,将时间戳作为参数传入,然后使用相关方法获取对应的年、月、日、小时、分钟、秒等信息,再将它们拼接成需要的格式。
示例代码:
consttimestamp = 1613481600000; // 时间戳,单位为毫秒
const date = new Date(timestamp);
const year = date.getFullYear();
const month = date.getMonth() + 1; // 月份从0开始,需要加1
const day = date.getDate();
const hour = date.getHours();
const minute = date.getMinutes();
const second = date.getSeconds();
const formattedTime = `${year}-${month}-${day} ${hour}:${minute}:${second}`;
console.log(formattedTime); // 输出:2021-02-16 00:00:00