我的字符串只有12
小时格式化时间
var time="12:10:12: PM"
我想将此字符串转换为秒。
我如何在moment.js
中执行此操作?
答案 0 :(得分:37)
尝试这样的事情:
moment('12:10:12: PM', 'HH:mm:ss: A').diff(moment().startOf('day'), 'seconds');
返回43812
答案 1 :(得分:6)
我只是想做同样的事情。运用 https://momentjs.com/
这就是我得到我想要的东西(03:11:23 => 11483秒)
myVar = moment.duration(myVar).asSeconds()
答案 2 :(得分:1)
毫米:秒到秒
myVar = moment.duration(`00:${'02:00'}`).asSeconds()//mm:ss to seconds