我正在使用Date()
来获取当地时区的当前时间。我将其格式化如下:
this.today = new Date();
from = new DatePipe('en-Us').transform(this.today, 'dd:MM:yyyy hh-mm-ss');
现在,我想将from
日期时间转换为Europe/London
时区。
没有moment
怎么办?
请帮助我
答案 0 :(得分:2)
我通过根据https://angular.io/api/common/DatePipe
为时区添加了另一个参数解决了我的问题这是更新代码:
to = new DatePipe('en-Us').transform(this.today, 'dd:MM:yyyy hh-mm-ss', 'GMT+1');