Windows Edge and opening a blob url [duplicate]
问题 This question already has answers here : Open links made by createObjectURL in IE11 (4 answers) Closed 2 years ago . I'm getting some odd results when trying to open a new window with a blob url in Windows Edge (20.10240.16384, which is the version in the IE11 VM supplied by Microsoft). var xhr = new XMLHttpRequest(); xhr.open('POST', sourceUrl, true); xhr.responseType = 'blob'; xhr.onload = function(e,form) { if (this.status == 200) { var blob = this.response; var url = window.URL