答案 0 :(得分:0)
添加了文本参数和文件
formData.append('fileKey', file);
formData.append('textKey', 'textValue');
答案 1 :(得分:0)
你可以试试这个。 let formData = new FormData();
for (let file of this.files) {
formData.append("file", file);
formData.append("judul", 'ayam');
}