I use angular 8. In my html I need to display current date.
(我使用angular8。在我的html中,我需要显示当前日期。)
Here is html code:
(这是html代码:)
<label class="col-md-4">Creation date </label>
<input type="date" class="form-control" formControlName="date"/>
How can I display in html above current date?
(如何在当前日期之上的html中显示?)
ask by Michael translate from so