微信小程序预览pdf

发布时间:2023年12月28日

需要用到的api

wx.downloadFile

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

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

			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();
							}
						})
					}
				})
			},

文章来源:https://blog.csdn.net/weixin_43830033/article/details/135226260
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。