小程序页面中时间戳-获取当前年月日


<wxs module="time">
  function format(ts) {
    var d = getDate(ts)
    return [d.getFullYear(), d.getMonth() + 1, d.getDate()].join('-')
  }
  module.exports.format = format
wxs>


   <view class="td">{{ time.format(item.createtime)}}view>

你可能感兴趣的:(小程序,小程序页面上转时间戳,js,小程序,javascript)