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

获取当前时间并转换所需格式

时间:2018-07-04 13:22:42      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:main   function   过滤   val   fun   cti   获取   gets   代码   

获取当前时间
let datatime = new Date() 
console.log(datatime)
打印结果:Wed Jul 04 2018 11:10:04 GMT+0800 (中国标准时间)

转换时间格式(其中一种)
let datatimes = new Date().getTime()
console.log(datatimes)
打印结果:1530673985063

时间过滤器(这段代码写在main.js里面)
Vue.filter(‘time‘, function (value) {
  if (value) {
    let date = new Date(Number(value))
    var Y = date.getFullYear()
    var M = (date.getMonth() + 1 < 10 ? ‘0‘ + (date.getMonth() + 1) : date.getMonth() + 1)
    var D = date.getDate() < 10 ? ‘0‘ + (date.getDate()) : date.getDate()
    var h = date.getHours() < 10 ? ‘0‘ + (date.getHours()) : date.getHours();
    var m = date.getMinutes() < 10 ? ‘0‘ + (date.getMinutes()) : date.getMinutes();
    var s = date.getSeconds() < 10 ? ‘0‘ + (date.getSeconds()) : date.getSeconds();
    return Y + ‘/‘ + M +‘/‘ + D + ‘ ‘ + h + ‘:‘+ m + ‘:‘+ s
  }
}),在main.js里面定义后,在页面如何引用?例:
  <span class="realCashs">{{orderDetailInfo.postTime | time}}</span>

  

  

  

获取当前时间并转换所需格式

标签:main   function   过滤   val   fun   cti   获取   gets   代码   

原文地址:https://www.cnblogs.com/xingxingzi/p/9262378.html

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