TypeScript簡單的日期和計時器工具類

日期工具類:
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; 
}

計時器工具類:
timer.ts

public timePromise : any;
...

timer( flag ){      //flag是一個標識,何時計時和何時停止
    var second = 0if( flag == 1){
        this.timePromise = setInterval(
            (success)=>{ //回掉函數開始計時了
                second++ ; 
                //other actions
            },1000);
    }
    else if( flag == 0 ){
        //other actions
        //清除計時器
        window.clearInterval(this.timePromise);
    }
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章