微信小程序打开pdf文件,真机测试可以打开,上传到测试版就打不开了,不知道怎么修改?
微信小程序打开pdf文件,真机测试可以打开,上传到测试版就打不开了,不知道怎么修改? 代码如下: itemPdfFo() { wx.showLoading({ title: '加载中', }) // 下载文件方法 wx.downloadFile({ url: '阿里云服务器地址', success: function (res) { var Path = res.tempFilePath //返回的文件临时地址,用于后面打开本地预览所用 wx.openDocument({ filePath: Path, fileType: "pdf", success: function () { console.log("打开文档成功"); wx.hideLoading() } }) }, fail: function (res) { console.log("失败"); } }) },