我Date()
用来获取本地时区的当前时间。我已将其格式化如下:
this.today = new Date();
from = new DatePipe('en-Us').transform(this.today, 'dd:MM:yyyy hh-mm-ss');
现在我想将from
日期时间转换Europe/London
为时区。没有moment
. 请帮我
我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');