小程序本地测试安卓能正常调用打开pdf ,ios不能
发布于 6 年前 作者 wzou 2567 次浏览 来自 问答

小程序本地测试安卓能正常调用打开pdf ,ios不能  如题 ios 下debug在手机远程调试 跟踪提示 打开文档成功 但是 没有弹出 pdf查看 安卓的可以用打开QQ浏览器阅读

 wx.downloadFile({

      url: http://10.28.40.191:8088/test.pdf,

      success: function (res) {

        var filePath = res.tempFilePath;

        wx.openDocument({

          filePath: filePath,

          success: function (res) {

            console.log(‘打开文档成功’)

          }

        })

      }

      })

1 回复

你好,在你的代码基础上加了个fail函数,然后结果是

回到顶部