在FormData中追加和访问数据

时间:2018-12-10 21:41:19

标签: file-upload form-data

我有一个文件,我想将其属性附加到formData上,然后再将其发送到服务器进行上传,但似乎无法附加。这是代码

uploadFile() {
let data = new FormData();
data.append('image', this.file, this.file.name);
console.log(data);
this.dataService.upload(this.file,
   this.patients[this.curIndex]._id).subscribe(res => {
});

}
即使文件变量具有文件数据,

在控制台中也会获得一个空对象。缺少什么吗?

0 个答案:

没有答案