标签: angular
在Angular应用程序中,我通过执行以下操作显示当前日期:
Ts.file
dateModel: Date = new Date();
html.file
{{currentDate | date:'yyyy-MM-dd'}}
我还将如何用以下时间显示时间:HH:mm:ss?
答案 0 :(得分:4)
很容易,因为:
{{currentDate | date:'yyyy-MM-dd HH:mm:ss'}}