Angular 8:如何设置angular material日期选择器的时间?

Angular 8: How can I set time for angular material datepicker?

我需要为 angular material 日期选择器设置时间,就像我 select 当前日期一样,它给了我系统的当前时间。 我想将时间设置为 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)

您可以添加以下工作方式

    getDate : any
    createForm() {
      this.newForm = this.fb.group({
        date: this.getDate;
      });

   ngOnInit(){
      const today = new Date();
      const SelectedDate = `${today.getFullYear()}-${today.getMonth() + 1}-${today .getDate()}`;
      this.getDate = new Date(SelectedDate);
      this.createForm();
   }