zoukankan      html  css  js  c++  java
  • 小程序 wxml 中 格式化时间

    <wxs module="formatTime">
      var formatTimeCoupon = function(times){
        var date = getDate((times*1000));
        var year = date.getFullYear()
        var month = date.getMonth() + 1
        var day = date.getDate()
        month = month > 9 ? month : '0' + month
        day = day > 9 ? day : '0' + day
        return year + '.' + month + '.' + day
      }
      module.exports = {
        formatTimeCoupon:formatTimeCoupon
      }
    </wxs>
    <view>有效期至 {{formatTime.formatTimeCoupon(时间戳)}}</view>

    注意:没有 new Date()   要用  getDate()

  • 相关阅读:
    网站服务化
    网站服务化
    dubbo 服务化
    dubbo 服务化
    elk 搭建
    poj1840
    poj1840
    poj2299
    poj2299
    poj2388
  • 原文地址:https://www.cnblogs.com/lymconch/p/13468292.html
Copyright © 2011-2022 走看看