Download a blob from HTTP URL in IE 11

后端 未结 3 976
别那么骄傲
别那么骄傲 2021-01-02 01:01

My page generates a URL like this: blob:http%3A//localhost%3A8383/568233a1-8b13-48b3-84d5-cca045ae384f, blob having file data. I am downloading this as a file i

3条回答
  •  时光说笑
    2021-01-02 01:38

    Fidel90's answer works fine in IE 11 after changing the IE specific part to this:

    (!window.navigator.msSaveBlob ? false : function (blobData, fileName) {
          return window.navigator.msSaveBlob(blobData, fileName);
    })
    

提交回复
热议问题