0
点赞
收藏
分享

微信扫一扫

Failed to execute ‘createObjectURL‘ on ‘URL‘ Overload resolution failed

王远洋 2022-02-22 阅读 295

vue使用二进制流下载文件,使用

 link.href = window.URL.createObjectURL(blob);

报错:
Failed to execute ‘createObjectURL’ on ‘URL’: Overload resolution failed.
百度了下,是因为Chrome更新后不支持这种用法,需要改为:

  let binaryData = [];
                    binaryData.push(blob);
                    link.href = window.URL.createObjectURL(new Blob(binaryData));
举报

相关推荐

0 条评论