在Chrome中打开blob objectURL

时间:2017-04-07 16:55:46

标签: javascript google-chrome base64 blob

我想在javascript中使用window.open(fileObjectURL)在chrome浏览器(Chrome 56.0.2924.87,Ubuntu 14.04)的新标签页中打开PDF。我正在从base64编码数据创建blob并创建一个这样的objectURL:

const fileObjectURL = URL.createObjectURL(fileBlob); 

在最新的Firefox浏览器中工作正常。但在Chrome中我可以看到新标签已打开,但随后立即关闭。所以我在控制台等处没有任何错误。 它现在在Chrome中运行的唯一方法是将base64数据直接提供给window.open(fileBase64Data)函数。但我不喜欢在网址中设置完整的数据。

也许这是Chrome阻止blob打开的安全问题?

6 个答案:

答案 0 :(得分:62)

原因可能是adblock扩展(我遇到了完全相同的问题)。

答案 1 :(得分:8)

您必须先打开新窗口,然后才能在窗口中放置Blob网址:

let newWindow = window.open('/')

您还可以使用其他页面,例如/loading,并带有加载指示器。

然后,您需要等待newWindow加载,然后可以在此窗口中推送Blob文件的网址:

newWindow.onload = () => {
    newWindow.location = URL.createObjectURL(blob);
};

Adblock扩展程序不会对其进行阻止。

我将其与AJAX和ES生成器一起使用,

let openPDF = openFile();
openPDF.next();
axios.get('/pdf', params).then(file => {
  openPDF.next(file);
});

function* openFile() {
  let newWindow = window.open('/pages/loading');
  // get file after .next(file)
  let file = yield;
  // AJAX query can finish before window loaded,
  // So we need to check document.readyState, else listen event
  if (newWindow.document.readyState === 'complete') {
    openFileHelper(newWindow, file);
  } else {
    newWindow.onload = () => {
      openFileHelper(newWindow, file);
    };
  }
}

function openFileHelper(newWindow, file) {
  let blob = new Blob([file._data], {type: `${file._data.type}`});
  newWindow.location = URL.createObjectURL(blob);
}

答案 2 :(得分:1)

解决通过adblocker的方法。

咖啡和jQuery

$object = $("<object>")
$object.css
  position: 'fixed'
  top: 0
  left: 0
  bottom: 0
  right: 0
  width: '100%'
  height: '100%'
$object.attr 'type', 'application/pdf'
$object.attr 'data', fileObjectURL
new_window = window.open()
new_window.onload = ->
  $(new_window.document.body).append $object

答案 3 :(得分:0)

萨拉姆

blob:http://***.***.***.**/392d72e4-4481-4843-b0d4-a753421c0433

Blob不受Chrome阻止,但受AdBlock扩展程序阻止 要么:

  • 在此站点上暂停
  • 不要在此网站的页面上运行
  • 或禁用或删除AdBlock扩展

Don't run on pages on this site

答案 4 :(得分:0)

使用普通的JavaScript语言(因为我没有jquery)

let newWindow = window.open('/file.html');
newWindow.onload = () => {
    var blobHtmlElement;
    blobHtmlElement = document.createElement('object');
    blobHtmlElement.style.position = 'fixed';
    blobHtmlElement.style.top = '0';
    blobHtmlElement.style.left = '0';
    blobHtmlElement.style.bottom = '0';
    blobHtmlElement.style.right = '0';
    blobHtmlElement.style.width = '100%';
    blobHtmlElement.style.height = '100%';
    blobHtmlElement.setAttribute('type', 'application/pdf'); 
    blobHtmlElement.setAttribute('data', fileObjectURL);
    newWindow.document.title = 'my custom document title';
    newWindow.document.body.appendChild(blobHtmlElement);
};

/file.html是几乎为空的html文件,来源:

<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>

</body>
</html>

经过chrome和firefox测试(2019年11月20日)

答案 5 :(得分:-1)

我没有广告拦截器。好像将blob类型显式设置为application / pdf可以解决此问题。

const newBlob = new Blob([blobData], {type: "application/pdf"});