dayjs 获取距当前时间的相对时间字符串

import dayjs from "dayjs";
import relativeTime from "dayjs/plugin/relativeTime";
import "dayjs/locale/zh-cn";
/** 设置语言为中文/
dayjs.locale("zh-cn");
dayjs.extend(relativeTime);

 /**返回时间戳(s)距当前时间的相对时间的字符串。精确到分 */
  getDataFromNow(unixNum: number) {
    return dayjs(dayjs.unix(unixNum).format("YYYY-MM-DD hh:mm")).fromNow();
  }

dayjs 获取距当前时间的相对时间字符串

上一篇:locale 语法的使用


下一篇:ENGINEER DAY04( 配置Linux网络 、 日志管理 )