uni-app 微信小程序 pdf预览

html 复制代码
<div @click="getPDF">查看体检报告</div>
js 复制代码
getPDF() {
	uni.downloadFile({
		url: `${this.$baseURL}/file/download?id=${this.pdfFileId}`,//编写在线的pdf地址
		success: function(res) {
			const filePath = res.tempFilePath;
			uni.openDocument({
				filePath: filePath,
				fileType: 'pdf',//这里类型必须是pdf
				success: function(res) {
					console.log('打开PDF成功');
				},
				fail: function(res) {
					console.log('打开PDF失败', res);
				}
			})
		},
		fail: function(res) {
			console.log('下载PDF失败', res);
		}
	})
}
相关推荐
sunphp开发者24 分钟前
制作手绘地图瓦片切图
前端·uni-app
fruge42 分钟前
不用反复折腾 Word 排版:本地部署 Magic Resume,在线编辑并导出 PDF
pdf
gsls2008081 小时前
Penpot 导出 PDF 报错 —— 问题排查与解决记录
pdf·原型·penpot
fthux1 小时前
下一次提交,隔了八年:掘金小程序回来了
微信小程序·开源·github
SamChan902 小时前
PDF 翻译服务的全链路可观测性设计:OpenTelemetry + Jaeger + Loki 实战方案
后端·python·pdf·机器翻译
ZiYiMing20 小时前
miniprogram-automator 在 2026 年还能用吗?——官方 SDK 三处硬伤的排查与重建
微信小程序
梦曦i1 天前
RouterLink v2.5.0:H5端原生能力全面回归
前端·uni-app
Source.Liu1 天前
【A11】基于 PDF 渲染引擎的统一文档界面架构设计
rust·pdf
拖孩1 天前
一个人 + AI 做的小程序,上线 15 天赚了 10 块 5
前端·后端·微信小程序
码农刚子1 天前
用 .NET 8 + uni-app 做一套多租户畜牧 SaaS:我们在秦巴牧云踩过的 6 个坑
uni-app·.net·saas