- 微信开发者工具中onProgressUpdate未触发并报错promise undefined?
this.uploadTask = wx.downloadFile({ url: this.fileUrl.split('?')[0], // filePath: usrFilePath, success: async downLoadFileRes => { try { const isSuccessGetFileInfo = await getFileInfo(downLoadFileRes) this.tempFilePath = downLoadFileRes.tempFilePath || downLoadFileRes.filePath; if (isSuccessGetFileInfo) { const fileName = this.file.name || '默认文件' const saveFileRes = await saveFile(downLoadFileRes, fileName) if (saveFileRes) { this.isLoading = false; this.savedFilePath = saveFileRes.savedFilePath; this.openDownloadedFile(); } } } catch (error) { removeSaveFileList(); } }, fail: error => { removeSaveFileList(); uni.showToast({ title: '文件打开失败,请稍后重试', duration: DURATION_LENGTH, icon: 'none' }) }, complete: e => { removeSaveFileList(); } }) this.uploadTask?.onProgressUpdate(({ progress }) => { const FINISH_PROGRESS = 100 if (progress === FINISH_PROGRESS) { this.progressText = '加载完成 请稍候' } else { this.progressText = `文件加载中... ${progress}%` } this.progress = progress }) [图片]
2023-09-14 - ios微信h5页面下载mp3,mp4,m4a文件之后不会进入预览打开文件
[图片] 下载之后直接一直停留在这个页面,无法打开文件。
2023-08-31 - ios微信打开pdf文档点右上角三个点,然后点分享没有反应?
[图片] 这个问题应该是一个必现问题,好几个月前就看有两个同学反馈了,一直没有回应
2023-02-14 - 有没有能禁用掉左滑退出页面的api?
h5,小程序 有没有api可以禁用掉左滑退出页面,回到聊天界面的api呢,左滑动作有其他用途,急急急
2022-05-13 - wx.addFileToFavorites收藏文件后无法在我的收藏直接打开,需要分享到聊天框打开?
我看这个问题很早就有人提出了,一直都没人理吗? 问题表现: [图片][图片] 复现路径: 所有安卓手机 代码片段: [图片]
2021-12-27 - 链接分享出来只有自己手机能看到别人看不到,自己的pc微信也看不到是为啥?
https://appd71goqxy6230.h5.xiaoeknow.com/v1/course/text/i_609b4d76e4b0fe3220127217?type=2 这个链接分享出来只有自己能看到,别人看不到(分享到朋友圈别人能看到) 同一个店铺下的其他链接可以,请问这是为什么?是微信单独对这个链接作了什么过滤吗?急急急https://appd71goqxy6230.h5.xiaoeknow.com/v1/course/text/i_60e015ece4b0151fc94c82ff?type=2 [图片] [图片]
2021-08-20 - 有没有api能禁用ios下微信webview中图片的长按弹出系统菜单弹框?
[图片]有没有啥方法能ban掉这个弹框呢?这边需要用到pointer-event,所以不能用pointer-event:none来实现,有没有别的api或者别的方法呢?
2021-08-16 - wx.previewImage预览大于1m的图片不会动
wx.previewImage预览大于1m的图片不会动,,,有没有替代方案
2021-05-20