微信小程序打开预览下载的文件

如果对您有帮助,请关注我, 欢迎加入微信小程序开发交流QQ群(173683866),有问题可以加群问我获取问群里的大神!!!

使用 wx.openDocument(obj) 方法预览

wx.downloadFile({
  url: 'http://example.com/somefile.pdf',
  success: function (res) {
    var filePath = res.tempFilePath
    wx.openDocument({
      filePath: filePath,
      success: function (res) {
        console.log('打开文档成功')
      }
    })
  }
})

打开预览文件乱码解决方法:
在后台设置contenttype;(文件类型)


可以在小程序预览了

猜你喜欢

转载自blog.csdn.net/qq_35713752/article/details/80338110