Set global time zone

前端 未结 5 553
北荒
北荒 2020-12-24 00:23

I am using Moment.js to handle dates in my web application. The server returns all the dates in milliseconds UTC. Now, I have to display the dates applying a specific timezo

5条回答
  •  感情败类
    2020-12-24 00:55

    1. npm install moment-timezone
    2. var moment = require('moment-timezone'); and use this object instead of usual moment.
    3. moment.tz.setDefault(String); where String is a time zone identifier.

    For example:

    var moment = require('moment-timezone');
    moment.tz.setDefault("America/New_York");
    

    Docs: https://momentjs.com/timezone/docs/

提交回复
热议问题