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 中使用 @ 和 符号格式化代码片段?

为 Blogger 上的博客格式化代码片段 [关闭]

谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js

VSCode自定义代码片段——JS中的面向对象编程

VSCode自定义代码片段9——JS中的面向对象编程

Node.js JavaScript 片段中的跳过代码