- wx.openDocument打开doc文档失败
- 当前 Bug 的表现(可附上截图) 开发者工具和安卓手机,均打不开doc文档。 [图片] - 预期表现 - 复现路径 - 提供一个最简复现 Demo
2019-04-22 - 小程序打开pdf、doc、xls等文档,有的时候能打开,有的时候不能正常打开?
但是不管能不能成功打开控制台查看wx.openDocument永远都是返回成功的回调 {errMsg: "openDocument:ok"} 相关代码长这样 wx.openDocument({ filePath: res.tempFilePath, fileType: type, success: function (res) { console.log('打开文件成功') //TEST console.log(res, type, useType, '2131231') }, fail: function (res) { console.log(res, type, 'openDocument') if (platform === 'android') { wx.showModal({ title: '打开文档失败', content: '请下载QQ浏览器后,再次打开文件', confirmText: '确定', showCancel: false, }) } else { wx.showModal({ title: '打开文档失败', content: '请复制文件下载地址到浏览器中打开', confirmText: '复制', showCancel: false, success: function (e) { if (e.confirm) { copyfileUrl(copyUrl); } } }) } }, })
2020-04-27