ts时间戳转日期

/** 时间戳转日期 */
const timestampToDate = (timestamp: any) => {
  if (timestamp == null || timestamp == undefined) return "";
  const date = new Date(timestamp);
  const year = date.getFullYear();
  const month = String(date.getMonth() + 1).padStart(2, '0');
  const day = String(date.getDate()).padStart(2, '0');
  const hours = String(date.getHours()).padStart(2, '0');
  const minutes = String(date.getMinutes()).padStart(2, '0');
  const seconds = String(date.getSeconds()).padStart(2, '0');
  return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
}
posted @ 2024-05-07 15:07  鱼鱼寡欢  阅读(159)  评论(0编辑  收藏  举报