Moment.js,将UTC日期更改为给定的UTC偏移量

时间:2019-04-23 13:38:44

标签: javascript date momentjs

我正在从后端接收2个值。

  1. UTC日期2019-05-01T17:38:00Z
  2. UTC偏移值UTC+10UTC-2

我需要根据偏移值从日期中添加或减去。

1 个答案:

答案 0 :(得分:1)

使用moment()。utcOffset()

// these are equivalent
moment().utcOffset("+08:00");
moment().utcOffset(8);
moment().utcOffset(480);