TypeScript 获取格式化日期
程序员文章站
2022-07-03 17:26:49
...
1:TypeScript 获取时间戳:
Date.parse(new Date().tostring());
2:TypeScript获取格式化日期:
static getNowDate(): string {
const date = new Date();
let month: string | number = date.getMonth() + 1;
let strDate: string | number = date.getDate();
if (month <= 9) {
month = "0" + month;
}
if (strDate <= 9) {
strDate = "0" + strDate;
}
return date.getFullYear() + "-" + month + "-" + strDate + " "
+ date.getHours() + ":" + date.getMinutes() + ":" + date.getSeconds();
}
3:日期工具类:
dateTime.ts:
formatDate(){
//三目运算符
const Dates = new Date();
//年份
const Year : number = Dates.getFullYear();
//月份下标是0-11
const Months : any = ( Dates.getMonth() + 1 ) < 10 ? '0' + (Dates.getMonth() + 1) : ( Dates.getMonth() + 1);
//具体的天数
const Day : any = Dates.getDate() < 10 ? '0' + Dates.getDate() : Dates.getDate();
//小时
const Hours = Dates.getHours() < 10 ? '0' + Dates.getHours() : Dates.getHours();
//分钟
const Minutes = Dates.getMinutes() < 10 ? '0' + Dates.getMinutes() : Dates.getMinutes();
//秒
const Seconds = Dates.getSeconds() < 10 ? '0' + Dates.getSeconds() : Dates.getSeconds();
//返回数据格式
return Year + '-' + Months + '-' + Day + '-' + Hours + ':' + Minutes + ':' + Seconds;
}
扩展链接:
TypeScript 获取当前日期及前后范围日期【Array】