使用预签名 URL 的 AWS S3 更新映像(Axios-PUT 请求)

时间:2021-02-23 18:53:35

标签: javascript amazon-s3 axios jpeg

我正在尝试使用 REST PUT 请求和 Axios 将本地 JPG 图像文件更新到 S3 存储桶中。

我设法发送了 PUT 请求并从 AWS S3 服务获得肯定答复但是它上传的不是 JPG 文件而是 JSON 文件。< /p>

这是我正在使用的代码:

    //Create the FormData
    var data = new FormData();
    data.append('file', fs.createReadStream(image_path));


   //Send the file to File-system
   console.log("Sending file to S3...");
   const axiosResponse = await axios.put(image_signed_url, {
       data: data,
       headers: { 'Content-Type': 'multipart/form-data' }
     }).catch(function(error) {
      console.log(JSON.stringify(error));
      return null;
     });

我已经尝试将标题更改为 {'Content-Type': 'application/octet-stream' },但我获得了相同的结果。

1 个答案:

答案 0 :(得分:1)

它没有设法使 AXIOS 工作以上传图像。

节点获取模块将图像作为二进制文件发送并指定“内容类型”。

如果我尝试使用 AXIOS 进行同样的操作,图像总是被打包成表单数据,结果是 JSON 文件上传到 S3 存储桶而不是图像。

 //Send the file to File-system
console.log("Sending file to S3...");
const resp = await fetch(image_signed_url, {
    method: 'PUT',
    body: fs.readFileSync(image_path),
    headers: {
      'Content-Type': 'image/jpeg',
  },
}).catch( err => {
  console.log(err);
  return null;
});