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);
		}
	})
}
相关推荐
double_eggm1 天前
微信小程序7
微信小程序·小程序
felipeas1 天前
uni-app day1
uni-app·notepad++
double_eggm1 天前
微信小程序8
微信小程序·小程序
前端后腿哥1 天前
UNIAPPX UTS插件Widget开发完整教程(Android版)
前端·uni-app
kyh10033811202 天前
Cocos Creator 《打螺丝消除游戏》源码+实现
游戏·微信小程序·小程序·打螺丝小游戏源码·微笑小游戏源码
2501_930707782 天前
使用C#代码替换 PDF 文档中的文本
pdf
PeanutSplsh2 天前
wx.setStorage 存的数据,没你以为的那么安全
微信小程序
黄同学real2 天前
uni-app 真机调试:手动代理环境下访问内网 API 的解决方案
uni-app
帅次2 天前
讯飞与腾讯云:Android 实时语音识别服务对比选择
android·ios·微信小程序·小程序·android studio·android runtime
Hoshizola2 天前
uniapp与蓝牙设备连接详细步骤
前端·uni-app