js/axios/jq下载图片流

axios({
    url: "", // 地址
    responseType:'blob', // 返回类型必须时blob类型
    params: {}
  }).then(function (res) {
    let blob = new Blob([res.data]);
    let _url = URL.createObjectURL(blob)
    let a = document.createElement('a')
    a.setAttribute('download', '图片.png'); // download属性
    a.setAttribute('href', _url); // href链接
    a.click();
  }).catch(function (err) {
    console.log('请求出错', err)
  })

你可能感兴趣的:(js/axios/jq下载图片流)