侧边栏壁纸
博主头像
前端小菜鸟 博主等级

聪明是一种天赋,而善良是一种选择。

  • 累计撰写 37 篇文章
  • 累计创建 24 个标签
  • 累计收到 0 条评论

目 录CONTENT

文章目录

简单的时间格式化dateFormat

fanfan
2023-05-02 / 0 评论 / 0 点赞 / 152 阅读 / 0 字
温馨提示:
本文最后更新于2023-05-02,若内容或图片失效,请留言反馈。 部分素材来自网络,若不小心影响到您的利益,请联系我们删除。

简单的直接格式化dateFormat

/**
 * 日期格式化
 * @param format {string}
 * @param date {Date}
 * @returns {string}
 */
export function dateFormat(format = 'yyyy-MM-dd HH:mm:ss', date = new Date()) {
  const object: Record<string, number> = {
    'M+': date.getMonth() + 1, // 月份
    'd+': date.getDate(), // 日
    'h+': date.getHours(), // 小时
    'H+': date.getHours(), // 小时
    'm+': date.getMinutes(), // 分
    's+': date.getSeconds(), // 秒
    'q+': Math.floor((date.getMonth() + 3) / 3), // 季度
    S: date.getMilliseconds(), // 毫秒
  };
  const y_regexp = /(y+)/;
  if (y_regexp.test(format)) {
    const searchValue = (format.match(y_regexp) || [])[1] || '';
    const replaceValue = (date.getFullYear() + '').substring(
      4 - searchValue.length,
    );
    format = format.replace(searchValue, replaceValue);
  }
  for (const key in object) {
    const k_regexp = new RegExp('(' + key + ')');
    if (k_regexp.test(format)) {
      const searchValue = (format.match(k_regexp) || [])[1] || '';
      const replaceValue =
        searchValue.length === 1
          ? String(object[key])
          : ('00' + object[key]).substring(('' + object[key]).length);
      format = format.replace(searchValue, replaceValue);
    }
  }
  return format;
}
0
博主关闭了所有页面的评论