Я хочу изменить формат ввода datePicker, по умолчанию - ММ / ДД / ГГГГ, я хочу изменить его на ДД / ММ / ГГГГ. HTML-код:
<mat-form-field>
<mat-label>Date de creation min</mat-label>
<input formControlName="dateDebut" matInput [matDatepicker]="pickerCreationMin"
placeholder="jj/mm/aaaa">
<mat-datepicker-toggle matSuffix [for]="pickerCreationMin"></mat-datepicker-toggle>
<mat-datepicker #pickerCreationMin></mat-datepicker>
</mat-form-field>
format-picker.ts
import { NativeDateAdapter } from '@angular/material';
import { MatDateFormats } from '@angular/material/core';
export class AppDateAdapter extends NativeDateAdapter {
format(date: Date, displayFormat): string {
if (displayFormat === 'input') {
let day: string = date.getDate().toString();
day = +day < 10 ? '0' + day : day;
let month: string = (date.getMonth() + 1).toString();
month = +month < 10 ? '0' + month : month;
let year = date.getFullYear();
return `${day}-${month}-${year}`;
}
return date.toDateString();
}
}
export const APP_DATE_FORMATS: MatDateFormats = {
parse: {
dateInput: { month: 'short', year: 'numeric', day: 'numeric' },
},
display: {
dateInput: 'input',
monthYearLabel: { year: 'numeric', month: 'numeric' },
dateA11yLabel: { year: 'numeric', month: 'long', day: 'numeric'},
monthYearA11yLabel: { year: 'numeric', month: 'long' },
}
};
, но когда я вручную вводил дату в формате ДД / ММ / ГГГГ, я получал ошибку недопустимой даты, пример: 24/08/ 2019