小程序-时间戳转时间方法

time(time) {
    // 判断时间戳是否为13位数,如果不是则*1000,时间戳只有13位数(带毫秒)和10(不带毫秒)位数的
    if(time.toString().length == 13){
      var tme = getDate(time);
    }else{
      var tme = getDate(time * 1000);
    }
    var Y = tme.getFullYear();
    var M = (tme.getMonth() + 1 < 10 ? ‘0‘ + (tme.getMonth() + 1) : tme.getMonth() + 1);
    var D = tme.getDate();
    var h = tme.getHours();
    var m = tme.getMinutes();
    var s = tme.getSeconds();
    tem1 = Y + ‘-‘ + M + ‘-‘ + D + ‘ ‘ + h + ‘:‘ + m + ‘:‘ + s
    return tem1;
  }

小程序-时间戳转时间方法

上一篇:C#表格,表格信息、GridView使用。


下一篇:微信小程序用户登录显示"微信用户"的问题——解决分析