嗨我有一个Handlebar助手调用findHour,它会将小时返回为hh:mm但是对于2:4(2hrs40),它不会在结尾处添加0。
var heure_intervention = "2000-01-01T07:04:57Z"
Handlebars.registerHelper( "findHour", function ( heure_intervention ){
a= new Date(heure_intervention);
return (a.getHours() +":"+ a.getMinutes());
});
答案 0 :(得分:1)
试试这个解决方案:
...
return ( ( '0' + a.getHours() ).slice(-2) +":"+ ( '0' + a.getMinutes() ).slice(-2));