Я настроил дату для форматирования yyyy-MM-dd, и мне нужно, чтобы мой компонент возвращал такую дату.В поле ввода все работает нормально, например 2020-10-03, но когда я пытаюсь console.log()
, я получаю это:
endDate: Sat Oct 03 2020 00:00:00 GMT+0300 (IDT)
И мне просто нужна такая же строка, как во вводе для моей базы данных.
HTML-код:
<mat-form-field color="accent">
<mat-label>End date</mat-label>
<input matInput
[matDatepicker]="endDate"
[formControl]="form.get('endDate')"
[errorStateMatcher]="matcher"
>
<mat-error *ngIf="form.get('endDate').hasError('required')">
End date is <strong>required</strong>
</mat-error>
<mat-datepicker-toggle matSuffix [for]="endDate"></mat-datepicker-toggle>
<mat-datepicker #endDate color="primary"></mat-datepicker>
</mat-form-field>
Код угловой составляющей:
export const PICK_FORMATS = {
parse: {dateInput: {year: 'numeric',month: 'numeric', day: 'numeric'}},
display: {
dateInput: 'input',
dateAllyLabel: {year: 'numeric', month: 'numeric', day: 'numeric'},
}
}
export class PickDateAdapter extends NativeDateAdapter {
format(date: Date, displayFormat: Object): string {
if (displayFormat === 'input') {
return new DatePipe('en-US').transform(date, 'yyyy-MM-dd')
} else {
return date.toString()
}
}
}
@Component({
selector: 'app-update-coupon',
templateUrl: './update-company-coupon.component.html',
styleUrls: ['../../../app/shared/layouts/company/company.component.css'],
providers: [
{provide: DateAdapter, useClass: PickDateAdapter},
{provide: MAT_DATE_FORMATS, useValue: PICK_FORMATS}
]
})
export class UpdateCompanyCouponComponent {
form = new FormGroup({
id: new FormControl('', [
Validators.required
]),
endDate: new FormControl('', [
Validators.required
]),
price: new FormControl('', [
Validators.min(1),
Validators.required
]),
amount: new FormControl('', [
Validators.min(1),
Validators.required
])
})
onSubmit() {
console.log(this.form.value)
}
Буду признателен за любую помощь!