Angular.js: Seconds to HH:mm:ss filter

后端 未结 6 2033
粉色の甜心
粉色の甜心 2020-12-15 17:34

I have a number of seconds count, for example, 713 seconds. How can I implement an Angular.js filter that converts this 713 seconds to HH:mm:ss format? In this case, it shou

6条回答
  •  太阳男子
    2020-12-15 18:05

    Try something like this:

    app.filter('secondsToDateTime', [function() {
        return function(seconds) {
            return new Date(1970, 0, 1).setSeconds(seconds);
        };
    }])
    

    html:

    {{seconds | secondsToDateTime | date:'HH:mm:ss'}}
    

    Demo

提交回复
热议问题