小程序
小游戏
企业微信
微信支付
扫描小程序码分享
- 当前 Bug 的表现(可附上截图)
安装了qq浏览器以后,opendocument没作用,卸载以后就可以了
- 预期表现
希望修复这个软件间的冲突
- 复现路径
- 提供一个最简复现 Demo
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
wx.downloadFile({
url: e.currentTarget.dataset.pdf,
header: {},
success: function(res) {
var filePath = res.tempFilePath;
console.log(res);
if (res.statusCode == 404) {
wx.showToast({
title: '获取文件失败',
icon: 'success',
duration: 2000
})
} else {
wx.openDocument({
filePath: filePath,
fileType: 'pdf',
title: "打开成功",
},
fail: function(res) {
title: "打开失败",
complete: function(res) {
}
console.log('文件下载失败');
complete: function(res) {},
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
你好,QQ浏览器打开小程序这部分功能并不是我们负责维护的。这方面的问题请找QQ浏览器的技术支持。
https://developers.weixin.qq.com/community/develop/doc/0006e09ce28838f667c748a665b000
我现在觉得是只要需要跳转到外部软件都无法打开。因为文件打开以后,我点击右上角的使用其他软件打开,弹出软件列表以后,选择软件是没有反应的。所以会不会是微信对opendocument的限制?不允许文件二次打开?所以当安装了qq浏览器以后,默认跳转到qq浏览器,但是qq浏览器又不能执行操作导致的冲突?
说的有道理,我的工程OTO也一样
我认为和文件扩展名缺失有关
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
wx.downloadFile({
url: e.currentTarget.dataset.pdf,
header: {},
success: function(res) {
var filePath = res.tempFilePath;
console.log(res);
if (res.statusCode == 404) {
wx.showToast({
title: '获取文件失败',
icon: 'success',
duration: 2000
})
} else {
wx.openDocument({
filePath: filePath,
fileType: 'pdf',
success: function(res) {
console.log(res);
wx.showToast({
title: "打开成功",
icon: 'success',
duration: 2000
})
},
fail: function(res) {
wx.showToast({
title: "打开失败",
icon: 'success',
duration: 2000
})
},
complete: function(res) {
console.log(res);
}
})
}
},
fail: function(res) {
console.log('文件下载失败');
},
complete: function(res) {},
})
你好,QQ浏览器打开小程序这部分功能并不是我们负责维护的。这方面的问题请找QQ浏览器的技术支持。
https://developers.weixin.qq.com/community/develop/doc/0006e09ce28838f667c748a665b000
我现在觉得是只要需要跳转到外部软件都无法打开。因为文件打开以后,我点击右上角的使用其他软件打开,弹出软件列表以后,选择软件是没有反应的。所以会不会是微信对opendocument的限制?不允许文件二次打开?所以当安装了qq浏览器以后,默认跳转到qq浏览器,但是qq浏览器又不能执行操作导致的冲突?
说的有道理,我的工程OTO也一样
我认为和文件扩展名缺失有关