moment js seconds转mm:ss qweasdzxc 2020-05-27 482 阅读1分钟 import moment from 'moment'; const seconds = 300; const time = moment.utc(seconds * 1000).format('mm:ss'); console.log('time: ', time); // 05:00