如何将角度日期转换为另一个时区

时间:2018-09-20 03:53:27

标签: angular angular-date-format

我正在使用Date()来获取当地时区的当前时间。我将其格式化如下:

this.today = new Date();
      from = new DatePipe('en-Us').transform(this.today, 'dd:MM:yyyy hh-mm-ss');

现在,我想将from日期时间转换为Europe/London时区。 没有moment怎么办? 请帮助我

1 个答案:

答案 0 :(得分:2)

我通过根据https://angular.io/api/common/DatePipe

为时区添加了另一个参数解决了我的问题

这是更新代码:

to = new DatePipe('en-Us').transform(this.today, 'dd:MM:yyyy hh-mm-ss', 'GMT+1');