https://developers.weixin.qq.com/minigame/dev/api/network/upload/UploadTask.onProgressUpdate.html
//已发送字节数
let showLoadingContent = ""
if ((res.totalBytesExpectedToSend / 1024) < 1024) {
showLoadingContent = (res.totalBytesSent / 1024).toFixed(0) + 'KB/' + (res.totalBytesExpectedToSend / 1024).toFixed(0) + "KB"
} else if ((res.totalBytesExpectedToSend / 1024 / 1024) < 1024) {
showLoadingContent = (res.totalBytesSent / 1024 / 1024).toFixed(0) + 'MB/' + (res.totalBytesExpectedToSend / 1024 / 1024).toFixed(0) + "MB"
} else {
showLoadingContent = (res.totalBytesSent / 1024 / 1024 / 1024).toFixed(0) + 'GB/' + (res.totalBytesExpectedToSend / 1024 / 1024 / 1024).toFixed(0) + "GB"
}
wx.showLoading({
title: showLoadingContent,
})
上面代码假如我上传10MB的文件,最后这个wx.showLoading,本来应该是 2MB/10MB,2MB这里根据上传不断变化,在微信开发者工具正常,发布后,左侧就不是根据上传变化,而是10MB/10MB这样子
微信开发者工具版本:1.03.2006090
bug微信版本:安卓7.0.17
你好,麻烦具体描述问题流程,提供出现问题的具体机型、系统版本号,以及能复现问题的代码片段https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html