如何在angular2中将秒转换为时间字符串?

时间:2016-06-02 11:51:08

标签: typescript angular code-snippets angular2-pipe

所以我一直在网上寻找这个功能,并且没有找到我可以用来将秒转换为可以表示为字符串的年,月,日,小时,分钟和秒的解决方案。

1 个答案:

答案 0 :(得分:10)

我已经在Angular2中提出了一个Pipe的解决方案,但是我希望得到一些反馈,以便更好地改进它。

此外,也许其他人会需要这种管道,所以我只是把它留在这里分享。

import {Pipe} from "angular2/core";
@Pipe({
       name: 'secondsToTime'
})
export class secondsToTimePipe{
times = {
    year: 31557600,
    month: 2629746,
    day: 86400,
    hour: 3600,
    minute: 60,
    second: 1
}

    transform(seconds){
        let time_string: string = '';
        let plural: string = '';
        for(var key in this.times){
            if(Math.floor(seconds / this.times[key]) > 0){
                if(Math.floor(seconds / this.times[key]) >1 ){
                    plural = 's';
                }
                else{
                    plural = '';
                }

                time_string += Math.floor(seconds / this.times[key]).toString() + ' ' + key.toString() + plural + ' ';
                seconds = seconds - this.times[key] * Math.floor(seconds / this.times[key]);

            }
        }
        return time_string;
    }
}