微信小程序预览pdf

记录微信小程序预览pdf文件,修改pdf名字安卓和ios都可用。

1.安卓和苹果的效果

微信小程序预览pdf_第1张图片

2.需要用到的api

1.wx.downloadFile

wx.downloadFile 下载文件资源到本地。客户端直接发起一个 HTTPS GET 请求,返回文件的本地临时路径 (本地路径),单次下载允许的最大文件为 200MB。

2.wx.openDocument

wx.openDocument 新开页面打开文档。

3.代码实现

			downPdf(){
				let that = this
				wx.showLoading({
					title: "资源下载中...",
				});
				const fileName = '测试一下'
				//下载文件资源到本地
				wx.downloadFile({
					url: that.pdfUrl, //后端返回的pdf路径
					filePath:`${wx.env.USER_DATA_PATH}/${fileName}.pdf`,//自定义pdf文件名
					success: function(res) {
						const filePath = res.filePath || res.tempFilePath 
						wx.openDocument({
							showMenu:true, //分享按钮
							filePath: filePath,
							success: function(res) {
								wx.hideLoading();
							}
						})
					}
				})
			},

你可能感兴趣的:(小程序,微信小程序,pdf,小程序)