Angular 2 - GET date

2020-04-19 04:59发布

I'm displaying date in my template:

<p>Datum</p>
<b>{{data.wageStatement?.date}}

This is how it's rendered:

2017-03-08T13:00:03.114Z

But I want to show only the date in this format:

2017-03-08

2条回答
闹够了就滚
2楼-- · 2020-04-19 05:30

Use DatePipe:

<p>Datum</p>
{{data.wageStatement?.date | date: 'dd-MM-yyyy' }}

You can find more info about DatePipe on Angular's official docs page.

查看更多
Deceive 欺骗
3楼-- · 2020-04-19 05:54

i use current time and date pipe in app:

  birthday:any=new Date();
constructor(){
  this.birthday=Date.now();
}

-- and in template

<div>
 {{birthday | date}}
</div>
查看更多
登录 后发表回答