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();
}
相关文章
- 11-05python3 获取当前日期时间字符串
- 11-05获取当前时间UTC时间的下一个15分钟时间点
- 11-05获取当前时间的上个月的第一天与最后一天
- 11-05hive:函数:from_unixtime获取当前的时间
- 11-05根据当前时间获取上一个月的时间
- 11-05获取当前时间前一天的随机时间
- 11-05关于在Servelet中如何获取当前时间的操作
- 11-05使用js获取当前的时间日期
- 11-05C++常用的时间处理函数(检验 struct tm* 是否合法,获取当前标准时间,获取当前时间戳,标准时间转毫秒级时间戳,时间戳转标准时间,…)
- 11-05获取当前时间的三个函数:time(),ctime(),gmtime()