码迷,mamicode.com
首页 > 其他好文 > 详细

时间戳转年月日-基于vue

时间:2020-07-14 21:52:52      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:color   星期六   new   vue   reg   regex   test   from   UNC   

一般在src/utils里新建date.js

import Vue from ‘vue‘;

// 时间戳转换为 YYYY-MM-DD HH:mm:ss
Vue.filter(‘formatDate‘, function(timeStamp, format) {
    if (timeStamp) {
      format = format || ‘YYYY-MM-DD‘;
      let week = [
        ‘星期日‘,
        ‘星期一‘,
        ‘星期二‘,
        ‘星期三‘,
        ‘星期四‘,
        ‘星期五‘,
        ‘星期六‘
      ];
      let date = new Date(parseInt(timeStamp));
      let o = {
        ‘M+‘: date.getMonth() + 1,
        ‘D+‘: date.getDate(),
        ‘h+‘: date.getHours() % 12,
        ‘H+‘: date.getHours(),
        ‘m+‘: date.getMinutes(),
        ‘s+‘: date.getSeconds(),
        ‘q+‘: Math.floor((date.getMonth() + 3) / 3),
        ‘S+‘: date.getMilliseconds(),
        ‘W+‘: week[date.getDay()]
      };
  
      if (/(Y+)/.test(format))
        format = format.replace(
          RegExp.$1,
          (date.getFullYear() + ‘‘).substr(4 - RegExp.$1.length)
        );
      for (let k in o)
        if (new RegExp(‘(‘ + k + ‘)‘).test(format))
          format = format.replace(
            RegExp.$1,
            RegExp.$1.length === 1
              ? o[k]
              : (‘00‘ + o[k]).substr((‘‘ + o[k]).length)
          );
      return format;
    }
  });

在需要的页面引入,

import { formatDate } from "@/utils/date.js";

在需要转码的地方:

{{ item.date | formatDate(‘YYYY-MM-DD HH:mm:ss‘)}}

 

时间戳转年月日-基于vue

标签:color   星期六   new   vue   reg   regex   test   from   UNC   

原文地址:https://www.cnblogs.com/crystral/p/13301251.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!