- wx.openDocument 除了 PDF 格式以外, 其他格式有时能打开有时不能(失败占多数)?
API : wx.openDocument() 微信版本: 7.0.11 基础版本: 2.10.3 开发者工具能正常打开 真机调试截图为下: [图片] 打印信息分别是: 下载文件 URL下载状态下载后临时地址文件类型打开文件状态代码片段: // openDocument 函数在 onLoad 中调用 openDocument (url, fileType) { const that = this console.log(url) wx.showLoading({ title: '加载中', }) wx.downloadFile({ url, success(res){ console.log('download success') console.log(res.tempFilePath) console.log(fileType) wx.openDocument({ filePath: res.tempFilePath, fileType, success() { console.log('open success') wx.hideLoading() }, fail(err) { that.setData({ errMessage: err.errMsg }) wx.hideLoading() console.log(err) } }) }, fail(err){ that.setData({errMessage: err.errMsg}) wx.hideLoading() console.log(err) } }) },
2020-03-12 - webView中使用 JSSDK 调用 chooseImage 回到首页
场景复现步骤: 1. 从服务号的自定义菜单中进入小程序嵌套的 webview 2. 在第三层路由栈的时候调起 chooseImage 3. 选择完照片或拍照点击完成 4. 立即返回到首页 同样的条件直接从小程序进入就没有问题
2019-08-27 - 新版开发者工具移动调试
iOS 下无法预览公众号网页, 安卓端正常. 请问这是什么情况?
2017-11-16