如何在angular2中格式化日期?

时间:2017-03-29 15:25:53

标签: date angular

我的代码:

   this.nextDay = new Date();
   var datePipe = new DatePipe('en-US')
   this.presentDate = datePipe.transform(this.nextDay, 'YYYY-MM-DD H:mm:ss');

但是使用上面的代码,我得到了this.presentDate = yyyy-3-DD 23:04:99

我希望约会时间为2017-3-23 23:09:06,但在这里我不知道为什么我会得到yyyy?。

1 个答案:

答案 0 :(得分:5)

您需要使用单个y和小写dd

this.nextDay = new Date();
var datePipe = new DatePipe('en-US')
this.presentDate = datePipe.transform(this.nextDay, 'y-MM-dd H:mm:ss');

参考:https://webdev.dartlang.org/angular/api/angular2.common/DatePipe-class