我正在尝试从网络工作者下载大 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)的最佳方法是什么?