小程序只有在调试模式下才能打开PDF和doc文件

发布于 6 年前作者 xiuyingliang7412 次浏览最后编辑 6 年前来自 ask

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

4 回复
cguo
cguo1 楼6 年前

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

minghu
minghu2 楼6 年前

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

chaoshi
chaoshi3 楼6 年前

是让管理员在后台打开权限,然后调用这个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('打开文档成功')
      }
    })
  }
})
yinjie
yinjie4 楼4 年前

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