其他分享
首页 > 其他分享> > 预览pdf文件

预览pdf文件

作者:互联网

 

 

FileDownload(this.upStandFileId)         .then((res) => {           //  预览文件           const binaryData = [res.data];           const pdfUrl = window.URL.createObjectURL(             new Blob(binaryData, {               type: "application/pdf",             })           );           window.open(pdfUrl);         })         .catch(() => {           this.$message.error("查看失败");         });

标签:文件,pdfUrl,const,预览,res,binaryData,window,pdf
来源: https://www.cnblogs.com/cs122/p/16496238.html