- 正常写法
(new Date().getHours() <= 9 ? "0" + new Date().getHours() : new Date().getHours()) +
":" +
(new Date().getMinutes() <= 9 ? "0" + new Date().getMinutes() : new Date().getMinutes()) +
":" +
(new Date().getSeconds() <= 9 ? "0" + new Date().getSeconds() : new Date().getSeconds());
- padStart 方法
(new Date().getHours().toString().padStart(2,'0')) +
":" +
(new Date().getMinutes().toString().padStart(2,'0')) +
":" +
(new Date().getSeconds().toString().padStart(2,'0'))
- 截取最后的字符串方法 ( substr )
{{ ('0' + item.month).substr(-2)}} // 截取最后两位