格式化Angular9中的日期,日期末尾用小写字母h

Format the date in Angular 9 with small letter h at the end of the date

我正在使用 Angular 9CommonModule DatePipe transform method 比如:

this.datePipe.transform(sumDate, 'dd/mm/yyyy HH:mm:ss');

我得到:

27/20/2020 17:20:14

我只需要一个小字母 h 在它的末尾,例如:

27/20/2020 17:20:14h

我查看了文档,但找不到任何内容。谢谢。

您可以通过用 '

包围文字文本来附加字母 h
{{my_date | date: 'yyyy/MM/dd HH:mm:ss\'h\''}}