为什么小程序只有在调试模式下才能打开PDF和doc文件?
wx.downloadFile({
url: “http://360test.s1.natapp.cc/study4j-web/test.pdf”,
success: function(res) {
console.log(‘downloadFile success, res is’, res)
var filePath = res.tempFilePath;
wx.openDocument({
filePath: filePath,
success: function(filePath) {
console.log(‘打开文档成功’);
}
})
}
})
请问各位大神,我们需要在小程序中想打开pdf或word文件,但是怎么都打不开,只有开启了调试模式才能打开pdf,但是我们以后上线后肯定用不了调试模式,请问怎么解决该问题?
8 回复