MOMMJS-更改当地时间的格式



我正在利用矩来获得时间。我以格式获得:2019年2月21日10:44:21 GMT 0500(巴基斯坦标准时间)。但是,我需要以格式为03:44:21 PM。谁能告诉我如何使用Momentjs来实现这一目标?

您可以将momentjs用于此目的。moment().format()

moment().format('hh:mm:ss A')

有关更多详细信息,请访问文档

本地也可用于转换固定偏移模式:

moment.parseZone('2016-05-03T22:15:01+02:00').local().format('hh:mm:ss A');

获取时区并使用以下方式转换时区:

let timeZone = moment.tz.guess();
let date = 'Thu Feb 21 2019 10:44:21 GMT+0500' // input date (other timezone)
let convertDate = moment(date).tz(timeZone) //converted Time

相关内容

  • 没有找到相关文章

最新更新