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