我们如何使用Google Chrome中的base64使用JavaScript显示PDF? 作为应用程序:PDF,base64:pdfbase64binary不再工作
答案 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)