使用downloadFile API 下载后的临时路径可以打开,而且saveFile API保存的文件无法在手机上找到,使用腾讯文档APP也无法找到
wx.downloadFile({ // 示例 url,并非真实存在 url: 'http://example.com/somefile.pdf', success(res) { const filePath = res.tempFilePath wx.openDocument({ filePath:savedFilePath, success(res) { console.log('打开文档成功') } }) } })
wx.downloadFile({ // 示例 url,并非真实存在 url: 'http://example.com/somefile.pdf', success(res) { const filePath = res.tempFilePath wx.openDocument({
filePath:savedFilePath,
success(res) { console.log('打开文档成功') } }) } })