收藏
回答

报告一个bug

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

最后一次编辑于  2020-08-07
回答关注问题邀请回答
收藏

2 个回答

登录 后发表内容
问题标签