如何在角度2中更改日期分隔符

时间:2016-07-27 06:44:55

标签: angular

我使用日期管道格式化日期,无法更改日期分隔符, 我想按照以下方式格式化日期“27.07.2016”。 我尝试使用以下代码

{{dateValue | date:'dd.MM.yyyy'}}

但以上代码格式的日期为“27/07/2016”

1 个答案:

答案 0 :(得分:0)

我非常确定dateValue没有 Date type 。您必须确保dateValue具有 Date type

例如

dateValue: Date = new Date();      // Date type. Make sure date is assgined to dateValue not string value.

{{dateValue | date:'dd.MM.yyyy'}}  // this will work.

http://plnkr.co/edit/vjqFcUZqxrgGYYjAvy1g?p=preview