我想使用HttpClient
在对象内上传文件。
export class Building {
name: string;
picture?: FileItem;
}
private onAfterAddingFile(fileItem: FileItem) {
console.log(fileItem);
this.form.get('picture').setValue(fileItem);
this.http.post('http://localhost:8000/en/buildings/', this.form.value)
.subscribe(res => { console.log(res) });
}
如何使用ng2-file-upload将带有文件的帖子发送到类字段?