无法使用 Angular 7 中的 FormData 发送带有 Ajax 的文件

Posted

技术标签:

【中文标题】无法使用 Angular 7 中的 FormData 发送带有 Ajax 的文件【英文标题】:Can not send a file with Ajax using FormData in angular 7 【发布时间】:2019-03-29 19:31:49 【问题描述】:

我正在使用 ASP.NET Core 作为后端,我正在尝试使用 ajax 在 Angular 7 中发送文件。 我创建了一个 FormData 类的对象,并使用 append 方法将文件添加到该对象中。 但我会在尝试顶部发布 api 时出错:

Error: "headers":"normalizedNames":,"lazyUpdate":null,"status":415,"statusText":"Unsupported Media Type","url":"https://localhost:44319/Api/TimeLinePost","ok":false,"name":"HttpErrorResponse","message":"Http failure response for https://localhost:44319/Api/TimeLinePost: 415 Unsupported Media Type","error":"type":"https://tools.ietf.org/html/rfc7231#section-6.5.13","title":"Unsupported Media Type","status":415,"traceId":"0HLLKF4AT3QD7:00000005"

这是我的角度代码:

export class StatusComponent 
  selectedImage: File = null;
  constructor(private http: HttpClient, @Inject('BASE_URL') private baseUrl: string) 

  
  onImageSelected(event) 
    this.selectedImage = <File>event.target.files[0];
  
  update() 
    const fd = new FormData();
    fd.append('image', this.selectedImage, this.selectedImage.name);
    this.http.post<boolean>(this.baseUrl + 'Api/TimeLinePost', fd).subscribe(
      result => 
      ,
      error => 
        alert('Ops! Somthing went wrong!');
        console.log(`Error: $JSON.stringify(error)`)
      
    )
  

这是我的 api:

[HttpPost]
public bool Post(IFormFile image)
 
    return true;


【问题讨论】:

【参考方案1】:

可以通过两种方式解决。

1) 将[FromForm] 属性添加到操作参数(如this question 中所回答):

[HttpPost]
public bool Post([FromForm] IFormFile image)
 
    return true;

2) 在配置中添加SetCompatibilityVersion(CompatibilityVersion.Version_2_2)。它会自动解决绑定问题:

public void ConfigureServices(IServiceCollection services)

   services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2);

【讨论】:

以上是关于无法使用 Angular 7 中的 FormData 发送带有 Ajax 的文件的主要内容,如果未能解决你的问题,请参考以下文章

使用angular 7时无法使用passport-jwt在快递Js中进行授权

new FormDat() 相关知识点

使用Angular 7获取“无法读取未定义的属性'http'”

Angular 7 下载 blob 时文件损坏

无法使用 Angular 7 将授权标头发送到节点 11/Express 4 服务器

使用 Angular 7 从 Firebase 存储中检索图像