Привет всем, есть проблема:
Пытаюсь вставить массив фоток в FormArray:
фрагменты из компонента:
public formData = this.fb.group({
images: this.fb.array([])
});
detectFiles(event) {
if (event.target.files.length > 0) {
this.formData.get('images').setValue(event.target.files);
}
console.log(this.formData.get('images'))
}
Код из html:
<input
type="file"
class="custom-file-input form-control"
id="files"
multiple
(change)="detectFiles($event)"
accept="image/x-png,image/jpeg"/>
Выскакивает ошибка
description-page.component.html:44 ERROR TypeError: value.forEach is not a function
Как можно загрузить фаил в FormArray?