小程序 .wxs文件 时间进行转换(常用的粘贴复制)

var time = {
  ymd: function (timestamp) {
    var date = getDate(timestamp * 1000); //时间戳为10位需*1000
    var Y = date.getFullYear() + '-';
    var M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1) + '-';
    var D = date.getDate() + ' ';
    var h = date.getHours() + ':';
    var m = date.getMinutes() + ':';
    var s = date.getSeconds();
    return Y + M + D + h + m + s;
  }
}

module.exports = {
  ymd: time.ymd
}


{{time.ymd(created_at)}}

 

你可能感兴趣的:(微信小程序)