js 格式化时间
Posted 24k纯帅强哥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 格式化时间相关的知识,希望对你有一定的参考价值。
写一个过滤器
getTime(item) { const date = new Date(
//这一步是根据我后端返回的时间格式处理的,可选用 item.replace(/\\-/g, "/").substring(0, item.indexOf(".")) ); const Y = date.getFullYear() + "-"; const M = (date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1) + "-"; const D = (date.getDate() < 10 ? "0" + date.getDate() : date.getDate()) + " "; const h = (date.getHours() < 10 ? "0" + date.getHours() : date.getHours()) + ":"; const m = (date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes()) + ":"; const s = date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds(); return Y + M + D + h + m + s; }
拿走不谢,我是金陵彭于晏我们下期再见!!!
以上是关于js 格式化时间的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Javadoc 中使用 @ 和 符号格式化代码片段?