appid:wx4e4ed37286c816c2
代码:
wx.downloadFile({
url: ‘https://miniprogram.mail.10086.cn/viewtest/static/test.pdf’,
success: function (res) {
const filePath = res.tempFilePath;
wx.openDocument({
filePath: filePath,
fileType: ‘pdf’,
success: function (res) {
wxlog.info(‘res999’, ‘打开文档成功’);
},
fail: function (err) {
wxlog.info(‘err111’, err);
},
});
},
});
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。