我的日期格式是2022-12-03T22:25:00.000+13我使用moment将此日期转换为moment(value).format('HH:mm')。问题是,当我转换它时,结果是10:25而不是22:25。我希望结果是22:25。我如何实现这一点?
2022-12-03T22:25:00.000+13
moment(value).format('HH:mm')
10:25
22:25
mwkjh3gx1#
您不需要再使用moment.js,因为Intl.DateTimeFormat现在已经被绑定了。
Intl.DateTimeFormat
const date = new Date("2020-05-12T23:50:21.817Z"); let options = {}; options.hour = '2-digit' options.minute = '2-digit' options.hourCycle = "h24"; console.log( new Intl.DateTimeFormat('en-US',options).format(date))
1条答案
按热度按时间mwkjh3gx1#
您不需要再使用moment.js,因为
Intl.DateTimeFormat
现在已经被绑定了。