收藏
回答

无法在小程序里查看PDF(Google Play版微信7.0.3)

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug wx.openDocument 客户端 Google Play版微信7.0.3 2.6.5

- 当前 Bug 的表现(可附上截图)

手机有装PDF阅读器,在微信聊天窗口打开PDF正常,无法在小程序里打开PDF。只有来自Google play的微信有这种情况。




- 预期表现

可以打开PDF或者弹出选择选择PDF阅读器的弹框。


- 复现路径


- 提供一个最简复现 Demo

dowReadPdf (url) {
    const pdfSrc = url || this.data.pdfSrc;
    wx.showLoading({
      mask: true
    });
    wx.downloadFile({
      url: this.data.pdfSrc,
      success(res) {
        wx.hideLoading();
        var filePath = res.tempFilePath;
        console.log('PDF本地路径', filePath)
        wx.openDocument({
          filePath: filePath,
          success: function (res) {
            console.log('打开文档成功')
          },
          fail: function (res) {
            wx.showToast({
              title: '打开PDF失败',
            })
            wx.hideLoading();
            console.log('打开文档失败', res);
          },
        })
      },
      fail: function (res) {
        wx.showToast({
          title: '下载失败: ' + res.errMsg,
          icon: 'none',
        })
        wx.hideLoading();
        console.log('下载文档失败', res);
      },
    })
  }


回答关注问题邀请回答
收藏

3 个回答

  • hexford~🐶
    hexford~🐶
    2019-05-22

    其它渠道安装的就可以打开么?

    2019-05-22
    有用
    回复 3
    • 木易是谁。、
      木易是谁。、
      2019-05-22

      是的,同一个版本的微信。从Google play下载的就无法打开PDF

      2019-05-22
      1
      回复
    • 木易是谁。、
      木易是谁。、
      2019-05-29

      请问现在有什么进展吗?

      2019-05-29
      回复
    • hexford~🐶
      hexford~🐶
      2019-07-10

      安卓7.0.5已经发布了,更新下看看呢


      2019-07-10
      回复
  • 王培烽
    王培烽
    2019-04-08

    同样碰到这个问题。。微信开发团队不关注下??

    2019-04-08
    有用 1
    回复
  • lucifer
    lucifer
    2020-01-02

    最新版微信 打开word也是 play版本的微信不行!

    2020-01-02
    有用
    回复
登录 后发表内容