这种情况一般是因为下载的文件的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('打开文档成功') } }) } })
谢谢,解决了。是在微信小程序的后台设置中没有设置。