vue将base64流数据转成pdf文件并在新页面打开
参考了很多写法,最终这种方法可以实现。具体实现方法:将下面这两个方法写在vue中,直接调用viewPdf函数,传参为要转换的base64流数据viewPdf(content) {if (!content) {this.$message.error('暂无意见')return}const blob = this.base64ToBlob(content)if (window.navigator &a
·
参考了很多写法,最终这种方法可以实现。
具体实现方法:将下面这两个方法写在vue中,直接调用viewPdf函数,传参为要转换的base64流数据
viewPdf(content) {
if (!content) {
this.$message.error('暂无意见')
return
}
const blob = this.base64ToBlob(content)
if (window.navigator && window.navigator.msSaveOrOpenBlob) {
window.navigator.msSaveOrOpenBlob(blob)
} else {
const fileURL = URL.createObjectURL(blob)
window.open(fileURL)
}
},
base64ToBlob(code) {
code = code.replace(/[\n\r]/g, '')
// atob() 方法用于解码使用 base-64 编码的字符串。
const raw = window.atob(code)
const rawLength = raw.length
const uInt8Array = new Uint8Array(rawLength)
for (let i = 0; i < rawLength; ++i) {
uInt8Array[i] = raw.charCodeAt(i)
}
return new Blob([uInt8Array], { type: 'application/pdf' })
},
更多推荐
已为社区贡献2条内容
所有评论(0)