我有一个文件,我想将其属性附加到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 => {
});
}
即使文件变量具有文件数据,在控制台中也会获得一个空对象。缺少什么吗?