0

当我单击 nextDate 按钮时,我试图将日期属性绑定到 mat-datepicker 的输入。我该怎么做?我正在使用[(ngModel)],但它不起作用。

我的html代码

<input   [(ngModel)]="departureDate"  [min]="minDate"
(dateInput)="onDateChange($event)" [matDatepicker]="picker"  placeholder="date"  (click)="_openCalendar(picker)" #elementToFocus>
<button (click)="nextDate()" class="date-btn" type="submit"><mat-icon>keyboard_arrow_right</mat-icon></button>
<button class="date-btn" type="submit"><mat-icon>keyboard_arrow_left</mat-icon></button>
<mat-datepicker #picker="matDatepicker" (closed)="_closeCalendar($event)"></mat-datepicker>

和我在 ts 中的方法:

 nextDate(){
this.departureDate.setDate(this.departureDate.getDate() + 1) }
4

0 回答 0