角文件上传方法http请求

0

的问题

我试图使用角-文件上传和上传文件。 在afuConfig,我想集方法以 但在终端我有错误。

uploadAPI:  {
      url:"https://example-file-upload-api",
      method:"POST",
      headers: {
     "Content-Type" : "text/plain;charset=UTF-8",
      },
}

它给我这样的:

  The types of 'uploadAPI.responseType' are incompatible between these types.
    Type 'string' is not assignable to type '"blob" | "json" | "arraybuffer" | "text" | undefined'.

我有同样的问题对于使用responseType。

angular file-upload javascript
2021-11-23 11:08:32
2

最好的答案

2

默认的 responseTypejson. 尝试分配 responseType: text 明确

uploadAPI: {  
  url: "https://example-file-upload-api",
  method:"POST",
  headers: {
    "Content-Type" : "text/plain;charset=UTF-8",
  },
  responseType: 'text'
}
2021-11-23 11:14:13

它没有为我工作。我认为,这是一个打字稿错误,但我不知道怎么修它
mary
0

试试下面的码头:

httpOptions: {
  headers:{
    accept: 'application/pdf'
  }
  responseType: 'blob',
}
2021-11-23 11:48:19

它对我不起作用,它更像稿错误
mary

其他语言

此页面有其他语言版本

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................