5

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

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

现在我想将from日期时间转换Europe/London为时区。没有moment. 请帮我

4

1 回答 1

7

我通过根据https://angular.io/api/common/DatePipe添加另一个时区参数解决了我的问题

这是更新代码:

to = new DatePipe('en-Us').transform(this.today, 'dd:MM:yyyy hh-mm-ss', 'GMT+1');
于 2018-09-20T04:21:38.880 回答