Base64在Google Chrome中编码为pdf?

时间:2017-10-07 23:02:10

标签: javascript google-chrome pdf base64

我们如何使用Google Chrome中的base64使用JavaScript显示PDF? 作为应用程序:PDF,base64:pdfbase64binary不再工作

2 个答案:

答案 0 :(得分:0)

您可以使用Blob URL来表示该文件。

fetch(<data URI>)
.then(response => response.blob())
.then(blob => {
  // do stuff with `Blob URL`
  const blobURL = URL.createObjectURL(blob);
});

另见Creating a Blob from a base64 string in JavaScript Base64 PDF in new tab shows Blank Page before Refresh

答案 1 :(得分:0)

window.open("data:application/octet-stream;base64," + response)