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

vue 格式化时间戳

时间:2021-04-28 11:50:24      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:imp   return   form   代码   时间戳   src   ===   adl   目录   

前言

有时候我们需要前端处理后端传过来的时间戳进行格式化为日期。

第一步

首先在src目录下建立js文件,如:date.js,加入如下代码

//日期格式化
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文件中,引入

import { formatDate } from ‘@/utils/date‘

第三步

在过滤器中使用

  filters: {
    formatDate(time) {
      // 秒处理为毫秒
      time = time * 1000
      let date = new Date(time)
      console.log(new Date(time))
      return formatDate(date, ‘yyyy-MM-dd hh:mm‘)
    },
  },

template中这样使用

<el-table-column label="日期" min-width="60"><template slot-scope="scope">{{scope.row.insert_time | formatDate}}</template></el-table-column>

vue 格式化时间戳

标签:imp   return   form   代码   时间戳   src   ===   adl   目录   

原文地址:https://www.cnblogs.com/niuben/p/14710393.html

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