从IE11中的Web worker下载Blob

时间:2014-11-14 11:29:38

标签: javascript internet-explorer internet-explorer-11 web-worker

我正在尝试从网络工作者下载 blob。

使用Firefox和Chrome非常简单:

url = URL.createObjectURL(oMyBlob);
//Then i return the url to the main thread and go to it

但根据this thread IE不允许这样做,我们必须使用它:

navigator.msSaveBlob(blob, defaultName);

navigator 似乎无法访问网络工程师中的 msSaveBlob ...

在IE11工作者中下载Blob(~100MB)的最佳方法是什么?

0 个答案:

没有答案