我使用日期管道格式化日期,无法更改日期分隔符, 我想按照以下方式格式化日期“27.07.2016”。 我尝试使用以下代码
{{dateValue | date:'dd.MM.yyyy'}}
但以上代码格式的日期为“27/07/2016”
答案 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.