小程序本地测试安卓能正常调用打开pdf ,ios不能
小程序本地测试安卓能正常调用打开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(‘打开文档成功’)
}
})
}
})