我正在使用 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) })''