Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.5k views
Welcome To Ask or Share your Answers For Others

1 Answer

~~image.png

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

看错了,非常抱歉


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...