Здравствуйте, я создал выбор, который показывает мне текущий год, 5 лет из прошлого и 3 года из будущего. Теперь я хотел бы установить его так, чтобы текущий год всегда был по умолчанию. Это должно быть сделано в Reactive Forms ... Вы знаете, как это сделать?
Мой код:
// HTML
<form [formGroup]="sendYearsForm">
<select class="upload_slc" id="upload_slc" required title="" formControlName="year"
(change)="sendYear($event)">
<option *ngFor="let years of sendYears" [value]="years">{{years}}</option>
</select>
<div class="select_arrow"></div>
</form>
// TS
sendYearsForm: FormGroup;
currentDate: Date = new Date();
selectedYear: number;
// Year form
this.sendYearsForm = this.fb.group({
year: [null]
});
// Show the current year with -5 and +3
this.selectedYear = this.currentDate.getFullYear(); // HThe current year is transferred here. How do I integrate it into the template?
for (let i = this.currentDate.getFullYear() - 5; i <= this.currentDate.getFullYear() + 3; i++) {
this.sendYears.push(i);
}