微信小程序下载word,excel,doc,pdf并打开预览并可以转发收藏

//查看并下载
contract() {
      wx.downloadFile({//下载
        url: url,//服务器上面的地址
        filePath: wx.env.USER_DATA_PATH + '/test.pdf',//自定义文件地址
        success: function (res) {
          var filePath = res.filePath
          wx.openDocument({//打开
            filePath: filePath,
            success: function (res) {}
          })
        }
      })
}

我们就实现了手机端与电脑端的下载与打开预览,由于苹果机没有本地文件我们无法拿到文件,安卓机由于每个手机路径不同很难查找到文件。

这个时候就换了一个思路,我们在预览的时候对文件进行转发并收藏到微信里

我们就只需要在wx.openDocument预览文档时,需要手动设置showMenu才能显示右上角的菜单进行转发或者收藏即可

我们可以在微信收藏列表点击右上角有一个用其他应用打开我们就可以实现自己的目的了

此方法苹果机亲测有效

//查看并下载
contract() {
      wx.downloadFile({//下载
        url: url,//服务器上的地址
        filePath: wx.env.USER_DATA_PATH + '/test.pdf',//自定义文件地址
        success: function (res) {
          var filePath = res.filePath
          wx.openDocument({//打开
            filePath: filePath,
            showMenu:true,   
            success: function (res) {}
          })
        }
      })
}

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