【发布时间】:2019-06-02 20:35:25
【问题描述】:
我正在使用 Ionic v4 开发一个 Ionic-Angular 项目。我在 matdatepicker 的输入标签中尝试了最大属性。它在值为空白时工作。但是当我以编程方式在输入中设置值时,最大验证不起作用。我使用 ngModel、formcontrol 和 formcontrolname 设置值。但是每次 max attr 都不起作用。
<mat-form-field class="full-width">
<input matInput [matDatepicker]="picker" readonly placeholder="Date Performed" [max]="todayDate" (click)="picker.open()"
[formControl]="serializedDate" formControlName="selecteddate">
<mat-datepicker-toggle matSuffix [for]="picker"></mat-datepicker-toggle>
<mat-datepicker #picker></mat-datepicker>
</mat-form-field>
let convetedDate = moment('1544466600000', "x").format("DD-MMM-YYYY");
this.myDate = new Date(Date.parse(convetedDate));
this.serializedDate = new FormControl(this.myDate);
【问题讨论】: