-1

我正在使用 React-Dropzone-Uploader 将图像上传到我的 API。

API 采用请求正文:

{ 
    image: “file”
} 

并给出成功响应数据:

{ 
    success: true, message: “success” // all user, plan info data 
} 

我无法做到这一点。

我正在使用 axios 进行 API 调用。

''让 image=files API.post('/web/v1.0/upload',{image}).then(response=>{ console.log(response.data) })''

4

2 回答 2

0

您是否看过https://react-dropzone-uploader.js.org/docs/examples提供的示例?

请提供您面临的确切问题。

于 2019-07-29T09:35:42.340 回答
0

您正面临此问题,因为您的请求未经过身份验证 401 与 axios 无关,请检查 API,如果需要身份验证,请发送auth_token如下:

headers : {
  'Content-Type' : 'application/json',
  'Accept' : 'application/json',
  'Authorization' : 'Bearer <token_here>'
}
于 2019-07-29T11:13:22.280 回答