简体   繁体   中英

Convert date & time string to moment.js with timezone

I have user inputs of meeting_time which is javascript Date (calendar select) and meeting_time string (select dropdown option)

var userTime = meeting_time ? meeting_time.label.split(' -')[0] : null
var userDate = moment(meeting_date).format("YYYY-MM-DD");

How Do I converting those variable to moment.js object with specific timezone

For example,

  • meeting_date is Thu Jul 12 2018 12:00:00 GMT+0300 (MSK)
  • meeting_time is 15:00 - 15:30

I want to get moment _d Thu Jul 12 2018 20:00:00 GMT+0800 (UTC +3 to UTC +8)

You can set the hour and minute in the date.

const [hour, minute] = userTime.split(':');
moment(meeting_date).hour(hour).minute(minute).toDate();

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