码迷,mamicode.com
首页 > 微信 > 详细

小程序 wxs时间戳转字符串

时间:2019-10-28 17:39:28      阅读:529      评论:0      收藏:0      [点我收藏+]

标签:时间戳   form   exports   字符串   程序   time   format   UNC   seconds   

function formatDate(value) {
  //不能使用 new Date()
  var time = getDate(value);
  var year = time.getFullYear();
  var month = time.getMonth() + 1;
  var date = time.getDate();
  var hour = time.getHours();
  var minute = time.getMinutes();
  var second = time.getSeconds();
  month = month < 10 ? "0" + month : month;
  date = date < 10 ? "0" + date : date;
  hour = hour < 10 ? "0" + hour : hour;
  minute = minute < 10 ? "0" + minute : minute;
  second = second < 10 ? "0" + second : second;
  return year + "-" + month + "-" + date + " " + hour + ":" + minute + ":" + second;
}
module.exports = {
  formatDate: formatDate
}

小程序 wxs时间戳转字符串

标签:时间戳   form   exports   字符串   程序   time   format   UNC   seconds   

原文地址:https://www.cnblogs.com/wang-xx/p/11753680.html

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