小程序只有在调试模式下才能打开PDF和doc文件
发布于 5 年前 作者 xiuyingliang 6922 次浏览 来自 问答

小程序只有在调试模式下才能打开PDF和doc文件,已经使用了https,求问解决方法。。

4 回复

这种情况一般是因为下载的文件的URL不在你的安全域名中

你怎么实现的打开pdf和doc文件,请教大佬

是让管理员在后台打开权限,然后调用这个api

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

谢谢,解决了。是在微信小程序的后台设置中没有设置。

回到顶部