Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

new XMLHttpRequest() 封装 URL.createObjectURL报错

function getExport(url, token, title) {
  let xhr = new XMLHttpRequest();
  xhr.open("GET", url, true);
  xhr.setRequestHeader("Authorization", "Bearer " + token);
  xhr.onload = function (e) {
    if (this.status === 200) {
      let blob = this.response;
      let ojA = document.createElement("a");
      let urlData = window.URL.createObjectURL(blob);
      ojA.href = urlData;
      ojA.download = title;
      ojA.click();
      window.URL.revokeObjectURL(urlData);
    }
  };
  xhr.send();
}

调用方法为什么报错

Export
public.js:347 Uncaught TypeError: Failed to execute 'createObjectURL' on 'URL': No function was found that matched the signature provided.

at XMLHttpRequest.xhr.onload (public.js:347)

image


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

~~image.png

~~仅web worker可用
https://developer.mozilla.org...

看错了,非常抱歉


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...