假设我的时间为13:45
。
现在我想使用moment.js将其转换为13:45:00
。
我在做
moment('13:45').format('h:m:s');
但它无效。
答案 0 :(得分:2)
使用moment
构造函数创建对象,然后使用format()
console.log(moment('13:45', 'HH:mm').format('HH:mm:ss'));
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js"></script>
答案 1 :(得分:2)
您需要添加第二个参数,让我们知道您传递日期的格式
moment('13:45', 'HH:mm').format('h:m:s')
或
moment('13:45', 'HH:mm').format('HH:mm:ss')