JavaScript 时间戳转换成日期
/**
* 转换时间, 将时间戳转换为特定格式日期
* 1544513350000 -> 2018-12-11 15:29:10
* @param datetime
* @returns {string}
*/
function parseDate(datetime) {
const date = new Date(datetime);
const Y = date.getFullYear() + '-';
const M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1) + '-';
const D = date.getDate() + ' ';
const h = date.getHours() + ':';
const m = date.getMinutes() + ':';
const s = date.getSeconds();
const time = Y + M + D + h + m + s;
return time;
}
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于