gpt4 book ai didi

angular - 在 typescript 中循环遍历表单数据

转载 作者:行者123 更新时间:2023-12-05 06:26:22 35 4
gpt4 key购买 nike

我正在尝试遍历 formdata,我已经多次阅读我应该能够在 for ... of ... 循环中使用 FormData,但是当我尝试时,我得到了错误:

Type 'FormData' is not an array type or a string type

我的代码:

export class NewsCreationComponent implements OnInit {

fileToUpload: File = null;
uploadImages = new FormData();

...

handleFile(event) {
this.fileToUpload = event.target.files;
this.uploadImages.append(this.fileToUpload.name, this.fileToUpload);
}

save() {
for (let up of this.uploadImages) {
this.imageService.createImage(up)
});
}

我做错了什么?

最佳答案

将您的 FormData 初始化 uploadImages = new FormData(); 移动到 ngOnInit() 生命周期 Hook ,因此您可以确定它在您的 保存时被定义() 函数被调用。

关于angular - 在 typescript 中循环遍历表单数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56202940/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com