错误:您没有收到 MultipartFile

Posted

技术标签:

【中文标题】错误:您没有收到 MultipartFile【英文标题】:Error: you are not receiving a MultipartFile 【发布时间】:2020-06-27 10:11:52 【问题描述】:

我在 java 中有一个 REST 服务,它必须接收 MultipartFile,但它给出了一个错误,它说它不是来自 angular 的 MultipartFile。我留下代码看看有没有人知道问题出在哪里...

角度 8:

sendFile(data: File): Observable<any>
   const headers = new HttpHeaders().set('Content-Type', 'text/html; charset=utf-8');
   return this.http.post('http://localhost:8080/v1/on/file', data,headers,responseType: 'text')
    .pipe(
      tap(_ => this.log('send file')),
      catchError(this.handleError('not send file', []))
    );
  

Java:

@RequestMapping("/file")
public MultipartFile filev1(
    @RequestParam("file") MultipartFile file) 
    service.filereturn(file);
    return file;


【问题讨论】:

File 是内置类型还是你自己创建的类型? 【参考方案1】:

您必须将其作为 FormData 传递,并且不需要在请求标头中指定 Content-Type:

例如:

sendFile(data: File): Observable<any>
   var _formData = new FormData();
   _formData.append('file', data);

   return this.http.post('http://localhost:8080/v1/on/file', _formData,  headers, responseType: 'text')
    .pipe(
      tap(_ => this.log('send file')),
      catchError(this.handleError('not send file', []))
    );

【讨论】:

当我返回 MultipartFile 文件时,它给了我这个错误:找不到可接受的表示,你知道如何解决这个问题吗? @MariaGálvez 那个错误是来自 Java 代码还是 Angular?

以上是关于错误:您没有收到 MultipartFile的主要内容,如果未能解决你的问题,请参考以下文章

收到错误“您必须首先在孩子的父母上调用removeView()”

如何在 phpmyadmin 中导入表?我收到文件大小错误

安装 web3.py 时收到错误

使用纬度和经度时收到 403 禁止错误:地理编码

访问Gmail(或安全网站)而不会收到PKIX证书路径错误

错误 - 服务无效。请检查您的设置并重试。 (0xE8000022)