时间转成x时x分x秒的封装(简易版)
Posted ayujun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了时间转成x时x分x秒的封装(简易版)相关的知识,希望对你有一定的参考价值。
function createTime(t) {
let timer;
if (t <= 0 || !t || t < 60 || typeof(t)!==‘number‘) timer = "default";
if (t >= 3600) timer = "hours";
if (t < 3600 && t >= 60) timer = "minutnes";
const defaul = () => {
return "";
};
const hours = () => {
const hour = Math.floor(t / 3600);
const remainder1 = t % 3600;
if (remainder1 === 0) return hour + "小时";
else if (remainder1 < 60) {
return hour + "小时" + remainder1 + "秒";
} else {
const min = Math.floor(remainder1 / 60);
const remainder2 = remainder1 % 60;
return `${hour}小时${min}分${
remainder2 === 0 ? "" : remainder2 + "秒"
}`;
}
};
const minutnes = () => {
const min = Math.floor(t / 60);
const remainder1 = t % 60;
return `${min}分${remainder1 === 0 ? "" : remainder1 + "秒"}`;
};
const map = new Map([
["default", (() => defaul())()],
["hours", (() => hours())()],
["minutnes", (() => minutnes())()],
]);
return map.get(timer);
}
使用的时候直接引入
然后createTime(你获取到时间)就可以了
注意:传入的时间必须为秒
以上是关于时间转成x时x分x秒的封装(简易版)的主要内容,如果未能解决你的问题,请参考以下文章
Vue项目实战——实现一个任务清单基于 Vue3.x 全家桶(简易版)