- 微信pc端,在小程序中调用wx.openDocument打开xls文档失败,不能打开文档?
问题如标题,在手机的微信小程序中打开文档正常,但在pc端的小程序中打开失败。代码如下,请帮助解决一下问题,谢谢! const params = { url, filePath, header: { Authorization: `bearer ${getApp().globalData.accessToken}` }, success: ret => { console.log('下载结果', ret ) if (ret.statusCode === 200) { wx.showToast({ title: '下载成功', icon: 'none', duration: 3000 }) ret.filePath ? this.openDoc(ret.filePath) : this.shareDoc(ret.tempFilePath, fileName) } else { wx.showToast({ title: '下载失败,请稍候再试', icon: 'none', duration: 3000 }) } }, fail: err => { console.log(err) wx.showToast({ title: '下载失败', icon: 'none', duration: 3000 }) } } wx.downloadFile(params) openDoc(filePath) { wx.openDocument({ filePath, showMenu: true, fileType: 'xls', success: function(res) { console.log('打开文档成功',res) }, fail: function(err) { console.log('打开失败:', err) } }) }
2023-07-18 - 域名已备案,小程序真机调试却访问不通。
域名已经备案,在其它工具和小程序开发工具的测试环境都是正常的。发布的小程序却访问不通。什么问题呀? 小程序id: wxb17263f1d167f014 域名: www.agribs.top
2023-03-01