wx.downloadFile( { url:url, // filePath:wx.env.USER_DATA_PATH+'/'+this.data.fileName, success: function (res) { console.log(res) const filePath = res.tempFilePath; // const filePath=res.filePath; console.log(filePath); wx.openDocument({ filePath: filePath, fileType: 'xlsx', showMenu: true, success: function (res) { console.log('打开文档成功') wx.hideLoading() }, fail: function (res) { console.log(res); }, complete: function (res) { console.log(res); } }) }, 这样写 打开的数据就正常 但是文件夹名称是乱码的 把注释切回来 filepath换了 出来的就是改之后的文件夹名 但是会打开旧文件 而不是新下载的文件
downloadFile在下载excel文件时,给文件进行改名,但是下载完成会打开旧文件?参考别人解决https://developers.weixin.qq.com/community/develop/doc/00088255a94580d4142bc32e656400的时候看到的解决方案[图片][图片] 但是这样如果不同项目下 文件夹名称一样 会自动打开旧文件 而不会打开新文件
2021-04-28文件类型是pdf 我自己的电脑上的PC小程序可以正常打开 别人电脑上打开就是空白
openDocument 在pc上 小程序下载文件后 打不开?小程序成功发布后 手机端正常打开文件正常下载 但是PC端小程序 我自己的电脑可以正常打开下载 别人的电脑打开一片空白 什么都没有 开发者工具上没有任何问题 代码片段 https://developers.weixin.qq.com/s/nWUCsImj7JoA 我看到1.8号有人提问 现在还没有修复么
2021-03-11