【发布时间】:2022-01-01 21:09:38
【问题描述】:
我正在尝试使用 angular-file-uploader 并上传文件。 在 afuConfig 中,我想将方法设置为 POST 但在终端中出现错误。
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 时也遇到了同样的问题。
【问题讨论】:
标签: javascript angular file-upload