美文网首页
vue 时间戳转换组件JS

vue 时间戳转换组件JS

作者: 阳光之城alt | 来源:发表于2018-08-21 11:47 被阅读0次
image.png

如何引用js

<div class="time">{{rating.rateTime | formatDate}}</div>

import  {formatDate} from '@/common/js/date.js'

 filters: {
      formatDate(time) {
        let date = new Date(time);
        return formatDate(date, 'yyyy-MM-dd hh:mm');
      }
    }
    

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);
}



相关文章

网友评论

      本文标题:vue 时间戳转换组件JS

      本文链接:https://www.haomeiwen.com/subject/ccbdiftx.html