uniapp PDF文件预览/打开

兼容微信小程序/h5/ios/android

在微信小程序环境下需要配置pdf域名

javascript 复制代码
pdfPreview(url){
	var title = '预览'
	uni.showLoading({ title: '加载中', mask: true })
	//由于android 下webview无法直接打开pdf,需要先下载
	uni.getSystemInfo({
		success: res => {
			console.log(res.platform);
			// if (res.platform === 'android') {
				wx.downloadFile({
					url: url,
					// filePath: wx.env.USER_DATA_PATH  + "/我的协议.pdf",
					success: function(res) {
						const filePath = res.tempFilePath;
						uni.showLoading({ title: '正在打开', mask: true })
						wx.openDocument({
							filePath: filePath,
							showMenu: true, // 显示右上角菜单
							fileType: "pdf",
							success: function(res) {
								uni.hideLoading()
								console.log('打开文档成功');
							},
							fail: function(err) {
								uni.hideLoading()
								console.log('fail:' + JSON.stringify(err));
							}
						});
					}
				});
			// } else {
			// 	this.$tab.navigateTo(`/pagesA/common/webview/index?title=${title}&url=${url}`)
			// }
		}
	});
},
相关推荐
ElasticPDF-新国产PDF编辑器4 小时前
Vue use pdf.js and Elasticpdf tutorial
vue.js·pdf
getyefang5 小时前
uniapp如何接入星火大模型
ai·uni-app
@PHARAOH5 小时前
WHAT - uni-app 条件编译技术
小程序·uni-app·条件编译
hunzi_17 小时前
选择网上购物系统要看几方面?
java·微信小程序·小程序·uni-app·php
芭拉拉小魔仙9 小时前
Uniapp Vue3 小程序接入实时音视频TUICallKit遇到的问题
小程序·uni-app·实时音视频
ElasticPDF-新国产PDF编辑器10 小时前
Angular 项目 PDF 批注插件库在线版 API 示例教程
前端·pdf·angular.js
goto_w10 小时前
uniapp上使用webview与浏览器交互,支持三端(android、iOS、harmonyos next)
android·vue.js·ios·uni-app·harmonyos
夏天想10 小时前
vant4+vue3上传一个pdf文件并实现pdf的预览。使用插件pdf.js
开发语言·javascript·pdf·vant
小宝小白10 小时前
【vue3】黑马小兔鲜儿项目uniapp navigationStyle
uni-app
ElasticPDF-新国产PDF编辑器11 小时前
React 项目 PDF 批注插件库在线版 API 示例教程
react.js·pdf·json