在vue中将获取到的时间戳转化为日期格式

将封装的时间戳函数单独放在一个js文件中

//导出封装的时间戳函数 formatDate
export function formatDate(date, fmt) {
  if (/(y+)/.test(fmt)) {
    fmt = fmt.replace(RegExp.$1, (date.getFullYear() + '').substr(4 - RegExp.$1.length));
  }
  let o = {
    'M+': date.getMonth() + 1,
    'd+': date.getDate(),
    'h+': date.getHours(),
    'm+': date.getMinutes(),
    's+': date.getSeconds()
  };
  for (let k in o) {
    if (new RegExp(`(${k})`).test(fmt)) {
      let str = o[k] + '';
      fmt = fmt.replace(RegExp.$1, (RegExp.$1.length === 1) ? str : padLeftZero(str));
    }
  }
  return fmt;
};

function padLeftZero(str) {
  return ('00' + str).substr(str.length);
};

将封装的时间戳函数进行调用

//调用封装的时间戳函数 formatDate
<template>
    {{`获取的时间戳` | showDate}}
</template>
<script>
   import { formatDate } from "封装的路径";
//在filters中转化已有的时间戳
filters: {
    showDate(value) {
      // 1.将时间戳转为Date对象
      const date = new Date(value * 1000);
      // 2.将date进行格式化
      return formatDate(date, "yyyy-MM-dd hh:mm:ss");
    }
  }
 </script>
Logo

前往低代码交流专区

更多推荐