项目场景:
微信小程序实现点击预览文件过程中遇到的问题。
解决方案:
1、预览文件需要通过downloadFile先下载再通过openDocument打开文件
downloadFilePreview (e) {
wx.showToast({
title: '打开中…',
icon: 'loading',
duration: 100000
})
wx.downloadFile({
url: e.currentTarget.dataset.url, // 这里换上自己的文件地址
success: function (res) {
var Path = res.tempFilePath // 返回的文件临时地址,用于后面打开本地预览所用
var filename = e.currentTarget.dataset.name;
var index1 = filename.lastIndexOf(".");
var index2 = filename.length;
var postf = filename.substring(index1, index2);//后缀名
var postf1 = postf.replace(/\./g, '')
wx.openDocument({
filePath: Path,
fileType: postf1,
success: function (res) {