当前位置:   article > 正文

await get 请求设置返回类型为blob

await get 请求设置返回类型为blob

在JavaScript中,当你使用fetchaxios等库进行HTTP请求并希望直接获得一个Blob类型的数据时(例如处理图片、文件下载等场景),你可以通过配置请求来实现。下面是使用fetchaxios设置返回类型为Blob的示例。

使用fetch

async function fetchBlob(url) {
  try {
    const response = await fetch(url);
    if (!response.ok) {
      throw new Error(`HTTP error! status: ${response.status}`);
    }
    const blob = await response.blob();
    return blob;
  } catch (error) {
    console.error('There was a problem with the fetch operation:', error);
  }
}

// 使用示例
fetchBlob('https://example.com/somefile.jpg')
  .then(blob => {
    // 处理Blob对象,比如创建URL以便预览或下载
    const url = URL.createObjectURL(blob);
    console.log('Blob URL:', url);
  })
  .catch(error => console.error(error));
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21

使用axios

首先,确保你已经安装了axios库。如果还没有安装,可以通过npm或yarn来安装:

npm install axios
# 或者
yarn add axios
  • 1
  • 2
  • 3

然后,可以这样设置返回类型为Blob

const axios = require('axios');

async function axiosGetBlob(url) {
  try {
    const response = await axios.get(url, { responseType: 'blob' });
    return response.data; // 这里直接返回的就是Blob对象
  } catch (error) {
    console.error('There was a problem with the axios request:', error);
  }
}

// 使用示例
axiosGetBlob('https://example.com/somefile.jpg')
  .then(blob => {
    // 处理Blob对象,比如创建URL以便预览或下载
    const url = URL.createObjectURL(blob);
    console.log('Blob URL:', url);
  })
  .catch(error => console.error(error));
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

在这两个示例中,我们都是先发起一个GET请求到指定的URL,然后通过配置确保响应体被处理为Blob类型。这样就可以方便地处理二进制数据,如图片、文档的下载或预览了。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/615254
推荐阅读
相关标签
  

闽ICP备14008679号