我需要为角度材料日期选择器设置时间,就好像我选择当前日期一样,它会给我系统的当前时间。我想将时间设置为 00:00:00。我怎样才能做到这一点?
我正在使用反应形式。这是代码。
today = new Date();
createForm() {
this.newForm = this.fb.group({
date: this.today
})
}
html
<div class="input-group">
<span class="input-group-addon" (click)="dt.open();">
<input [matDatepicker]="dt" type="text" class="input-form input_fullWidth"formControlName="date" fullWidth fieldSize="small">
<div class="datepicker-icon-div">
<i class="fa fa-calendar"></i>
</div>
</span>
<span>
<mat-datepicker #dt></mat-datepicker>
</span>
</div>
这是我得到的输出
Tue Mar 31 2020 11:33:47 GMT+0530 (India Standard Time)
我想要的时间应该是
Tue Mar 31 2020 00:00:00 GMT+0530 (India Standard Time)
德玛西亚99
暮色呼如
相关分类