简体   繁体   中英

How to change date format and time zone with DatePicker(moment.js) in React(Ant Design v4)?

How to change date format and time zone with Ant Design DatePicker?

在此处输入图片说明

Use named timezones. Include Moment Timezone

 moment(birthday).tz('America/Toronto').format('YYYY-MM-DD HH:mm')

or use .utcOffset(). This function uses the real offset from UTC.

moment(birthday).utcOffset(60).format('YYYY-MM-DD HH:mm')

About format

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM