七牛返回的数据是这样的:
文件已经上传成功了,截图我没改 但返回格式是这样的;
上传代码(angular2):
// file 是input=file的files[0]
const ext = file.name.split('.').pop();
let formData = new FormData();
formData.append('file',file);
formData.append('token',this.upload_token);
formData.append('key',this.CreateUUID() + '.' + ext);
return this.http.post('http://upload-z2.qiniu.com',formData)
.toPromise()
.then(response => console.log(response))
.catch(this.handleError);
请问是什么原因