使用自定义时间格式作为输入的 moment js 时间格式

moment js time formatting with custom time format as inputs

输入格式可以是,hh:mm OR hh OR hh:mm:ss OR hh:mm A/hh A/hh:mm:ss 如何将其格式化为与“hh:mm:ss A”格式相同的内联格式。

我们如何使用moment js进行格式化。或 moment js 时间格式输入不可行。

可以使用 Format method

DEMO

import moment from "moment";

let date = new Date();
let time = date.getTime();

moment(time).format("hh:mm:ss A");