我已关注此link 当我在我的代码中检查响应时
imageUploaded(image:any){
var headers = new Headers();
headers.append('Content-Type','multipart/form-data')
headers.append('Authorization',this.token);
let formData: FormData = new FormData();
formData.append('image', image.file);
this.http.post(this.serverUrl+'photo/upload/user/'+this.userJson.user.public_id,formData, { headers: headers})
.subscribe(
response => {
if(response.json().error_code == 0){
alert('done')
}else{
this.data = {};
}
}
)
}
当我使用live验证我的API时,我在网络中找到的唯一差异是内容类型
对于工作API -----Content-Type:multipart/form-data; boundary=----WebKitFormBoundaryl4oxlVSt9yblG8VC
对我来说-----Content-Type:multipart/form-data
我错过了内容类型的界限。任何人都可以帮助我。谢谢。